diff --git a/apple2main.go b/apple2main.go index 7be9c39..d1bf018 100644 --- a/apple2main.go +++ b/apple2main.go @@ -9,11 +9,11 @@ import ( func MainApple() *Apple2 { romFile := flag.String( "rom", - "../romdumps/Apple2_Plus.rom", + "/Apple2_Plus.rom", "main rom file") disk2RomFile := flag.String( "diskRom", - "../romdumps/DISK2.rom", + "/DISK2.rom", "rom file for the disk drive controller") disk2Slot := flag.Int( "disk2Slot", @@ -21,7 +21,7 @@ func MainApple() *Apple2 { "slot for the disk driver. -1 for none.") diskImage := flag.String( "disk", - "../romdumps/dos33.dsk", + "/dos33.dsk", "file to load on the first disk drive") cpuClock := flag.Float64( "mhz", @@ -29,7 +29,7 @@ func MainApple() *Apple2 { "cpu speed in Mhz, use 0 for full speed. Use F5 to toggle.") charRomFile := flag.String( "charRom", - "../romdumps/Apple2rev7CharGen.rom", + "/Apple2rev7CharGen.rom", "rom file for the disk drive controller") languageCardSlot := flag.Int( "languageCardSlot", @@ -83,12 +83,4 @@ func MainApple() *Apple2 { //a.AddCardLogger(4) return a - /* if *useSDL { - a.ConfigureStdConsole(false, *stdoutScreen) - apple2sdl.SDLRun(a) - } else { - a.ConfigureStdConsole(true, true) - a.Run(log) - } - */ } diff --git a/cardBase.go b/cardBase.go index f72fe21..14d7f33 100644 --- a/cardBase.go +++ b/cardBase.go @@ -2,7 +2,6 @@ package apple2 import ( "io" - "io/ioutil" ) type card interface { @@ -23,10 +22,7 @@ func (c *cardBase) loadRom(filename string) { if c.a != nil { panic("Rom must be loaded before inserting the card in the slot") } - data, err := ioutil.ReadFile(filename) - if err != nil { - panic(err) - } + data := loadResource(filename) c.rom = newMemoryRange(0, data) } diff --git a/characterGenerator.go b/characterGenerator.go index 627ae12..e62eefc 100644 --- a/characterGenerator.go +++ b/characterGenerator.go @@ -2,7 +2,6 @@ package apple2 import ( "fmt" - "io/ioutil" ) /* @@ -27,10 +26,7 @@ func NewCharacterGenerator(filename string) *CharacterGenerator { } func (cg *CharacterGenerator) load(filename string) { - bytes, err := ioutil.ReadFile(filename) - if err != nil { - panic(err) - } + bytes := loadResource(filename) size := len(bytes) if size != rev7CharGenSize { panic("Character ROM size not supported") diff --git a/diskette16sector.go b/diskette16sector.go index d2e8fbd..840480c 100644 --- a/diskette16sector.go +++ b/diskette16sector.go @@ -1,7 +1,6 @@ package apple2 import ( - "io/ioutil" "os" ) @@ -40,10 +39,7 @@ func (d *diskette16sector) write(track int, position int, value uint8) int { func loadDisquette(filename string) *diskette16sector { var d diskette16sector - data, err := ioutil.ReadFile(filename) - if err != nil { - panic(err) - } + data := loadResource(filename) size := len(data) if size == nibImageSize { diff --git a/memoryManager.go b/memoryManager.go index 1d279b3..531d3ee 100644 --- a/memoryManager.go +++ b/memoryManager.go @@ -2,7 +2,6 @@ package apple2 import ( "io" - "io/ioutil" ) // See https://fabiensanglard.net/fd_proxy/prince_of_persia/Inside%20the%20Apple%20IIe.pdf @@ -122,10 +121,7 @@ const ( ) func (mmu *memoryManager) loadRom(filename string) { - data, err := ioutil.ReadFile(filename) - if err != nil { - panic(err) - } + data := loadResource(filename) size := len(data) if size != apple2RomSize && size != apple2eRomSize { panic("Rom size not supported") diff --git a/resources.go b/resources.go new file mode 100644 index 0000000..4b63b9d --- /dev/null +++ b/resources.go @@ -0,0 +1,41 @@ +package apple2 + +import ( + "io" + "io/ioutil" + "os" + "strings" + + "github.com/ivanizag/apple2/romdumps" +) + +const ( + internalPrefix = "/" +) + +func loadResource(filename string) []uint8 { + var file io.Reader + if strings.HasPrefix(filename, internalPrefix) { + // load from embedded resource + resource := strings.TrimPrefix(filename, internalPrefix) + resourceFile, err := romdumps.Assets.Open(resource) + if err != nil { + panic(err) + } + defer resourceFile.Close() + file = resourceFile + } else { + diskFile, err := os.Open(filename) + if err != nil { + panic(err) + } + defer diskFile.Close() + file = diskFile + } + + data, err := ioutil.ReadAll(file) + if err != nil { + panic(err) + } + return data +} diff --git a/romdumps/Apple2_Plus.rom b/romdumps/Apple2_Plus.rom deleted file mode 100644 index b0641c3..0000000 Binary files a/romdumps/Apple2_Plus.rom and /dev/null differ diff --git a/romdumps/Apple2rev7CharGen.rom b/romdumps/Apple2rev7CharGen.rom deleted file mode 100644 index 094bebf..0000000 Binary files a/romdumps/Apple2rev7CharGen.rom and /dev/null differ diff --git a/romdumps/DISK2.rom b/romdumps/DISK2.rom deleted file mode 100644 index 56698b0..0000000 Binary files a/romdumps/DISK2.rom and /dev/null differ diff --git a/romdumps/dos33.dsk b/romdumps/dos33.dsk deleted file mode 100644 index ef257aa..0000000 Binary files a/romdumps/dos33.dsk and /dev/null differ diff --git a/romdumps/generate/.gitignore b/romdumps/generate/.gitignore new file mode 100644 index 0000000..027271b --- /dev/null +++ b/romdumps/generate/.gitignore @@ -0,0 +1 @@ +files diff --git a/romdumps/generate/generate.go b/romdumps/generate/generate.go new file mode 100644 index 0000000..b935d84 --- /dev/null +++ b/romdumps/generate/generate.go @@ -0,0 +1,24 @@ +// To generate the resources put the files on a "files" subdirectory and run main + +package main + +import ( + "log" + "net/http" + "os" + "path/filepath" + + "github.com/shurcooL/vfsgen" +) + +func main() { + var cwd, _ = os.Getwd() + templates := http.Dir(filepath.Join(cwd, "files")) + if err := vfsgen.Generate(templates, vfsgen.Options{ + Filename: "../romdumps_vfsdata.go", + PackageName: "romdumps", + VariableName: "Assets", + }); err != nil { + log.Fatalln(err) + } +} diff --git a/romdumps/romdumps_vfsdata.go b/romdumps/romdumps_vfsdata.go new file mode 100644 index 0000000..38a8a12 --- /dev/null +++ b/romdumps/romdumps_vfsdata.go @@ -0,0 +1,208 @@ +// Code generated by vfsgen; DO NOT EDIT. + +package romdumps + +import ( + "bytes" + "compress/gzip" + "fmt" + "io" + "io/ioutil" + "net/http" + "os" + pathpkg "path" + "time" +) + +// Assets statically implements the virtual filesystem provided to vfsgen. +var Assets = func() http.FileSystem { + fs := vfsgen۰FS{ + "/": &vfsgen۰DirInfo{ + name: "/", + modTime: time.Date(2019, 6, 1, 16, 12, 15, 506827447, time.UTC), + }, + "/Apple2_Plus.rom": &vfsgen۰CompressedFileInfo{ + name: "Apple2_Plus.rom", + modTime: time.Date(2019, 6, 1, 16, 1, 9, 32737902, time.UTC), + uncompressedSize: 12288, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\xb9\x7b\x7c\x13\x55\xda\x00\x7c\x26\x49\xaf\x5c\x1a\x2e\x6a\x44\xd4\x23\x94\xd2\x62\xc5\xe8\xea\x7e\x5d\xe4\x56\x21\x98\x74\x87\x36\xbd\xe0\x6d\xdd\x32\x2a\x81\x09\xa2\x22\x0a\xef\xaa\xab\x2d\x90\x13\x6b\x94\x77\xa7\x4a\xb5\xa5\xa4\x4c\xc7\x9c\x98\x09\x2d\x26\xae\xbe\xb6\xb8\xf5\x8d\xfb\xd2\x9a\xe9\x2a\x1e\xa0\x40\x2f\xb4\x14\x4a\xd3\xb4\xe5\x32\x94\x5b\x4b\x5b\xf2\xfd\x26\x55\xdf\x7d\x7f\xbf\xef\xaf\x2f\x94\xe7\x5c\xe6\x39\xcf\x79\x9e\xe7\x3c\xb7\x33\xf3\x6a\xab\xe5\xe4\xf0\xa9\xdd\x6d\xfe\x0e\xfd\x95\xd6\xd3\x67\x3a\xfe\x76\xa5\xfc\xca\xb9\xcb\x9d\x97\x5b\x2e\x27\x0f\x3d\x34\xb4\x7c\xe8\xe4\x95\x33\x57\xc2\xd7\xc7\xaf\xb3\x37\x5e\xb9\x11\xba\xf1\xd4\x18\xbc\x91\x72\xe3\x8d\x1b\x9b\x86\x5e\x19\xda\x32\xb4\x6d\xa8\x68\x28\x7b\x68\x63\xdb\x9a\x21\x34\x84\x87\x9a\x87\xee\xb8\xf2\xed\x95\xaa\x2b\xcf\x0f\x19\xda\x97\xb4\x4d\x6b\x0b\xb6\x19\x5b\xaf\xaa\x61\xdb\xc6\xb6\x8e\xb6\x97\x5b\x07\xdb\x76\xf6\x05\x5b\xbf\x68\x9d\xde\xf3\x56\x5f\x4b\x7b\x59\xab\xeb\x84\xf5\xc4\xbe\x0e\xe3\x09\x6e\x70\xee\xf9\x2f\x06\x13\x41\xd7\xd9\xe9\x2d\x3f\x9d\x8e\x9c\xdd\x75\xf1\xc0\xa5\xcc\xfe\x84\x4b\x03\x97\x2e\x5f\x5a\x24\x57\xc9\xeb\xfa\x4e\x84\x1a\x7b\xe2\xfa\x7a\x43\xab\x42\xcf\x86\xec\xa1\xd2\xd0\x9b\x81\xbe\x37\xc5\xbe\xb7\xb7\xf7\xbf\xcd\x0e\xbc\xf3\xc9\x45\x73\xc1\xe9\x55\xd9\xa7\x8b\x7e\xbe\x58\xf4\x69\xd7\xba\x75\xa7\x0d\xd9\x87\x56\xe5\x1c\xcd\x36\x3c\xdd\xb2\x32\xb3\xe0\x7b\x53\xb6\x79\x4d\xcb\x4a\xc3\x8f\x2b\x4d\x3f\xe5\x19\x32\x0f\x3d\x71\xb4\xc0\xf0\x74\x8b\x39\xef\x33\x53\xf6\x67\x2b\x32\xe9\x1f\xcd\x74\x4e\x8b\x91\x36\x1d\x7e\x92\x36\x1d\x36\x3e\x91\xf7\xa5\xf1\x89\xa3\xc6\x15\x39\x74\x4e\x5e\x83\x51\x79\xb4\x32\x2f\xf3\xe4\xd3\x0a\x30\x16\x64\xfe\xd3\x98\xb3\xba\x31\x2f\xa7\xa0\x21\x7f\x45\x26\x6d\x68\xc8\x37\xd2\x39\x99\x87\x0a\xf2\x32\x57\x34\x66\xe7\xfc\xd2\xe4\xad\xce\xfc\xd1\x94\xfd\xa4\x21\x2f\xbf\x71\x15\x9d\x99\x1f\x9c\xa0\x64\xce\x21\x4f\x2a\xcb\x4d\xab\x0d\xab\x0f\xd2\x39\x0a\xcc\xc9\x36\xe4\x1d\xcd\x33\xe4\xaf\x59\xdd\x98\x67\x50\xf8\xc8\x2f\xc8\xc9\x6b\xcc\x37\x1b\x0c\x2b\x1b\x68\x43\xcb\x13\x39\x05\x3f\xe7\xad\x39\x6c\x6a\xca\x33\x44\x1f\xb8\x9f\xc8\xc9\x5f\xf3\xcf\x3c\x43\xc1\x9a\xbc\xc3\x79\x86\x9f\xf2\x0b\x72\x48\xce\xe1\xa7\x32\x4d\x2d\x0a\x0b\xf9\x99\x4f\x36\xae\x34\x34\x99\x73\xfe\xd8\x68\xce\x33\x65\xb7\xac\xc8\xc9\x6e\xa1\x4d\xf9\x2d\x2b\x68\x43\xe6\xd1\x27\x0c\x2d\xd9\x86\x93\x05\x99\x8f\x7b\x0a\x7e\x5e\x75\x38\xdf\xbc\xc2\x53\x60\x34\x1c\xce\x6c\xc9\xce\x69\xc9\x2f\x30\x90\xfd\xb5\xde\x2f\xba\x32\xb3\x0f\xe5\x1c\xfd\xae\xe1\x1f\xf9\x4f\x1c\x36\x65\xb7\x64\x3e\x7e\x6c\x4d\xfe\xd1\x55\x79\x8d\xf9\x2b\xf2\xb2\x3d\xe6\x95\x3f\x9a\x73\x8e\xe5\xe7\x1e\xcd\xcb\x3e\x44\xe7\xfc\x60\x78\x9a\xac\xc8\x39\x96\x6f\x3a\x5c\x90\x79\x38\xb3\xe0\xb0\xd9\x60\xf8\x17\x6d\x38\x9c\x5f\x90\xe7\x7a\x32\xf3\xc7\xcc\xfc\xff\x59\x61\xcc\x73\xd1\x86\x55\x05\xae\x3c\xd3\x13\xc6\x02\xd7\x6a\xd3\x4a\x17\xc8\x36\x3c\x5d\x00\x9f\x32\x15\x18\x73\xd6\x14\xc0\x55\x39\x47\xf3\x9f\xc9\x2e\xc8\x6c\x8d\x0a\x93\xfd\xdb\x7c\x54\x40\xa5\x93\xb3\x0a\x46\x8f\x8d\xa6\x0d\x4f\x64\xd2\x30\x77\x4d\x66\x76\x81\xa9\xa0\x2d\xe7\x49\x43\xde\x2a\x3a\xe7\xe4\x2f\x28\xab\x0d\xab\x73\xf2\xda\xd6\x64\xaf\x34\xac\x9a\xbf\x12\xe6\x17\x64\x16\x18\x56\x1b\xb2\x5b\x1e\xcf\x5c\x09\xf3\xd7\x3c\x9e\xbf\x22\xcf\x64\x6e\xc9\x33\xac\x34\xad\x9e\xbf\x12\x66\xe6\xe5\x65\xb6\xad\x34\x3d\x69\xca\x37\xe5\x64\xc3\xc7\x9f\x81\xcf\x1a\xf2\x7e\xfe\x95\xfe\x4a\x53\x9e\x61\x45\x4b\xc1\x33\x66\x03\x5c\x6d\xca\x5f\x9d\x59\xb0\x22\x98\x5f\x90\x67\xca\x7e\x02\x16\xe4\xe4\x40\x3a\x27\xfb\x87\x55\x39\x79\xab\xd7\xd0\x99\xd1\xf1\x8a\x9c\xd5\x66\xda\xd0\xba\x22\x33\x7b\x7e\x01\x5c\x91\x93\x5d\x60\xca\x5e\xd3\xf8\x2b\x17\xab\xd6\x64\xaf\x28\x30\xe5\x1c\x86\x86\xbc\xbc\x9c\xbc\x38\x00\x4d\xd9\x10\x4c\x79\x3c\xcf\x90\xf9\xc7\x38\x70\x30\x1c\x0e\x87\x1b\x28\x4a\xda\x4e\xee\xc3\x76\x92\xd8\xa0\xa2\x10\x6a\x50\x53\xc8\xde\xa9\xa6\x48\x1c\x46\x9d\x2a\x4a\x8e\x73\xe8\xac\xd3\xbd\xa4\x95\x81\x3d\xc7\xd0\xcb\xb6\x57\x32\xf0\x27\xbd\x95\xa8\xd0\x83\x3f\xed\xdd\xeb\x0d\x97\xcb\x73\xf1\x27\x19\xbd\x85\xe8\x13\x9f\xba\xe9\xd3\x0c\xbc\xbb\xb7\x10\xed\xf6\xc5\x37\x95\x71\x1a\xff\x27\xa5\xbb\x4b\xc8\x88\xd2\x34\x7d\xda\x54\xd6\x4c\x86\x98\x44\xeb\xef\x7d\x8f\xa2\xc2\x83\xe7\x0a\xb9\x85\xcc\xa1\xcd\x5c\x2a\xd1\x34\xbe\xca\xcd\x31\x0a\x09\xe5\xc6\xaf\x3f\x6e\xd6\xde\x84\xb6\x73\xc2\x0d\xb6\xcc\x19\xd6\xdf\x64\x3d\xec\xa1\xcd\x5c\x2c\x89\x69\x7c\xd5\x47\x31\xc2\xea\xe4\x56\xad\x9a\xee\x1f\x82\xa3\xed\xf0\xd9\x8e\x06\xe6\xa8\x11\x3e\xd7\x11\x66\xb5\xd7\xe0\xce\x13\xa2\x99\x3f\x06\x17\x75\xb8\xb6\x05\x65\x35\xbc\xf3\x02\x1c\x6d\x17\x3a\xe1\xc2\xe3\xf6\x3a\x5b\xfd\xaa\x56\xe8\x07\x5e\xf9\xbc\x10\xb1\x6f\xe3\x62\xe1\x33\xc7\xe9\x98\x56\xf7\x17\x76\xab\xdb\x67\xdf\x08\x27\xb7\xc3\x67\x8e\xdb\x92\xe0\xac\x13\xdc\x4a\x9e\xf2\x57\xa2\xb5\xd8\x8a\x0a\xf1\x5e\xf4\x3c\xae\x2c\xb9\x5c\xa9\xb3\x58\x91\x15\x31\x78\xa3\x35\x82\x36\xf6\xee\xf5\x66\xe0\xca\x5e\xab\xc7\xa7\x0e\x37\x3d\xaf\xb3\x14\x72\xea\xa6\xb5\x3a\x7f\x61\x29\x13\x24\x23\xa1\xb5\xa1\xe7\x9b\xc9\x50\x2d\x50\xc9\x19\xf8\x75\xd7\x1b\xe8\x55\xdb\x66\x6c\x45\x9f\x58\x92\xd0\x6e\xd7\x46\xdb\xa7\x1c\x15\xb4\x95\xc1\x8f\x8f\x61\xb3\x2b\x77\xd7\x2d\xea\xc3\x08\x85\x5f\x76\xbd\x82\xac\xb6\x8d\xae\xa4\xfa\x51\xaa\xa4\xb4\x92\x0c\x43\xcb\x09\xbc\xc1\xc5\xa2\x42\xdb\x5a\x1d\x4f\xf9\x0b\xc9\x24\x6c\x45\x5f\xe0\x8d\xc8\x47\x2f\x6e\xe1\x35\x41\x7f\x21\x19\x0d\x96\x5b\x0a\xbd\x3c\x28\x2d\xc4\x6b\xad\x20\x58\x5a\x68\x2f\x44\x6b\xb9\xa3\x42\xb1\xfd\x77\x70\xe3\x78\xf7\x25\x4e\x25\x5c\x12\x81\x13\xa8\x1c\xf2\xa4\x86\x08\x95\x56\xe4\x8c\x50\xcd\xe4\x9a\x08\x84\x08\x4f\x31\x70\xf2\x78\x5a\x11\xe3\xae\x6b\xe6\x35\xb6\x19\xc9\x27\xb4\xf1\x2c\x0b\x2d\x27\xe8\xa3\x27\xc3\x0d\x40\x95\x3c\x63\xb3\x46\x82\xf2\x55\x34\x55\x9a\x23\xbf\xb1\x79\xb5\xb4\x8c\x68\xc4\x83\xc4\x20\xe9\x39\x8d\xb4\x98\x5b\x62\xab\x15\x09\x72\x8a\x3f\xa3\x2a\x1e\xd8\x92\x4a\xec\x75\xcd\x41\xa2\x0a\x55\x29\x4b\x25\x28\x0f\x67\x5c\x76\xca\x17\xa5\x62\x92\x19\x93\x24\x35\x92\x29\x0d\x94\x4a\xca\x96\x1f\x91\x72\x64\xbd\xd8\xe8\xaa\x0d\x07\x2b\x46\xa9\xfa\x51\x4a\xfe\x43\x46\xff\x22\x59\x23\x99\x88\x0a\xcd\xc8\xe8\xff\x0b\xb1\xa3\xa9\x0d\x40\x25\x9f\x6e\x9c\x2a\x77\x28\x38\x61\x22\xbb\xeb\x42\x49\x7e\x67\x94\x78\x22\x77\xdd\xef\x24\xce\x06\xa0\xd2\x7e\x5b\x31\x4e\x35\xd5\x8b\x11\x54\xc7\xe0\x0d\x6e\x96\xa7\x50\xa5\x7d\xaf\xbf\x52\xbe\x37\x18\xc4\xb9\x47\x2a\x39\x9d\xac\x2e\x21\x09\xd8\x5c\x72\xa4\x92\x9b\x2c\x27\x96\xf8\x2b\xbd\x25\xfe\x4a\xdf\x49\x1d\x43\xc6\x45\x80\x4e\x78\x4a\x37\x04\x4b\x37\xe0\x0d\x56\x15\x52\x94\xca\x5a\x01\xda\x88\x7c\xf0\xd3\x13\x22\x20\x0b\xfe\xf7\xc4\x5c\x1b\xd1\x4b\xb6\x4d\x8a\x95\x43\x53\xab\xb0\xc6\x9e\xc7\x7a\x58\x61\x78\x8f\xb1\xdc\x28\x02\xf4\x16\x9a\xc9\xe8\xf0\x06\x6b\x04\xd5\x61\xd6\x1a\x41\xf5\x0c\x97\x28\xc7\x4b\x92\xac\x91\xd2\x49\xaf\x62\x4c\xb3\x4e\xc0\x6f\x80\xac\xfd\x65\xca\x06\xfd\x00\x4e\x6e\x27\xcd\x2c\x8b\xcd\x31\xb9\x24\x56\x8c\x20\x33\xca\x55\x0c\x4d\x5e\x09\x9f\x6e\x85\xa3\xed\x41\x7f\xa5\x37\xe8\xaf\x6c\xcc\x25\x9a\x73\x66\x59\xe5\x7b\xc0\x86\x60\xf2\x05\x11\xba\x50\x5a\x11\x7c\xae\x03\x27\x4b\xf7\x71\x71\x70\xb4\x5d\x8c\x41\xc9\x41\x7f\x25\xb9\xdb\x33\xb1\xc0\x5e\x89\xf6\x92\xff\x12\xa7\xc0\xe7\x3a\xe8\xa3\x27\xa3\xca\xf2\x3b\x19\xed\x8f\x19\xfd\x45\x5e\x1b\xe2\x89\xcd\xc9\xff\x6c\xab\xe2\x23\xcd\x72\x1c\x4c\x3f\xa9\x1d\xd5\x5f\x17\x21\x7c\xae\x03\xa6\x9f\xd4\xc7\xc0\xe7\x3a\xc8\x75\xf8\x5c\x87\x08\x49\xb9\x58\x8c\x66\xc2\x55\xed\xd0\x72\x8c\xc4\x38\xac\x49\xde\x3d\x2c\x2b\x26\xc0\x13\xc7\xe0\x67\x6d\xba\x72\x4b\x9d\x11\xd7\x5b\x81\x11\x6f\x33\xe2\xad\x46\xf1\x7b\x18\xe8\x82\x1b\x3b\xe1\x86\x4e\x2c\x24\x14\xcd\xab\x42\x55\xe2\x17\xfc\x49\xc5\x5c\x69\xd8\x25\xce\xe0\xfb\xe1\xc8\x00\xfc\x06\x48\x3f\x90\x58\x45\xf0\x0d\x9d\x70\xc7\x20\xbc\xad\x0b\xdb\x8d\x18\x19\xc5\xed\xc6\x83\xf6\x61\xf8\x74\x2b\xae\x73\xd5\xbb\xb7\x85\x65\x0d\x7a\xd3\xf6\x16\x0f\xfc\x75\xe4\x29\x5e\xe5\xaf\xd3\xc9\x8f\x04\xfd\x75\x68\xab\x02\xb6\x95\x5b\xea\x50\x1d\xa7\x0a\xd5\x27\x0f\x69\x67\x2a\xc8\x49\xe2\x5c\xf8\x5c\x87\x7b\x2b\xde\x06\x93\x2f\xc0\xa7\x3a\x14\xfa\xa9\xad\xf4\xd1\x93\xf2\x0b\xf2\x03\xfd\xc5\xdc\x34\x69\xb9\x6f\x66\xa2\xa7\x9e\x22\xc6\x7a\x40\x8c\xb4\x1f\xd0\xab\xda\xa5\x45\xf2\x7f\xd3\x52\x57\x06\xde\xd0\x4f\xb9\x58\x1f\x55\x82\xde\xb1\xbd\xcb\xd4\x82\x80\xb4\x53\xa6\x18\x98\x7f\x5c\x88\xfc\x12\x52\x24\xb5\x8f\xd2\x91\xc5\xbf\xb2\x36\x59\x61\x0d\x6f\x75\x6d\x43\xff\x61\xfb\x0b\xcb\x8a\x7f\xe6\x8f\x71\x6a\xfa\xa1\x16\x7a\x71\x0b\xb9\x43\x38\xea\x7a\x8b\xa8\xe9\xe9\x2d\xf8\x4d\x54\x67\xab\xc7\xff\xe1\xfa\x0b\xda\x6a\xdb\xc6\x64\xe0\x2f\x7a\x37\x20\x33\xf6\xf5\xb2\x28\x17\xca\xad\xf0\xa7\x5b\x90\x6a\xa3\x7f\xba\xa5\xf4\xc7\x6f\xe9\xf0\x06\x8b\x19\x59\x31\x6b\xc9\x45\x1b\x71\x1e\x3a\x01\xa9\x36\x38\x7e\x2b\xf9\x84\x56\x4d\x5b\x4e\xd0\x43\x2d\xa2\x99\x07\x68\xb1\x6d\x89\x98\x87\x96\xda\x96\xd9\x4e\x30\xd1\x58\xb0\xd8\xb6\x24\x6a\x94\x4b\x6d\xcb\x98\xf8\xa6\x6d\xa9\x44\xc1\x86\x9b\x4e\xd0\x8f\xb6\x89\x6a\x78\xe2\x18\xae\x37\xe2\xba\x5f\x0f\xc8\x67\x84\xdf\x00\xb8\xb4\x8d\x3e\x7a\x52\x31\x46\x77\x1b\xde\xd6\x98\xeb\x9b\x54\x9e\x61\xa9\x73\xd7\x73\x71\x61\x9f\x46\x71\x1d\x78\xcf\x09\xee\x1e\x5c\xd9\x4f\xa1\x3a\xbc\xb7\x1f\xa0\x7a\xc5\x43\x22\x08\x41\xcb\xb1\x3d\x92\x4f\x9e\x24\xdc\x9e\x2e\x3c\x4b\x4f\x6f\xa1\xa5\x2e\x96\x0d\x3c\x2e\x3f\x86\xb6\xb2\x68\x1b\x8b\xea\x58\x54\x0f\x3f\x6b\x2b\xd7\xfd\x7a\x38\x8c\xb0\x28\x5d\x00\xf6\x29\x3c\xb0\x4d\xc5\x53\xdd\x53\xd0\x14\xfb\x54\x7f\x9d\x1c\x6e\x9c\x2a\x9f\x0b\x4a\x73\xc8\x15\xb9\x9f\x65\x59\x06\xbe\xdd\xa9\x58\xc5\x7e\x39\x46\x3c\x04\x03\x5d\xd8\x49\x62\xa0\xbb\x4d\xfe\x06\x7e\x03\x7c\x6a\x7a\x69\x1b\x9d\xda\x0a\x87\x43\x46\xc9\x27\x6b\xa4\xfd\xe4\xfd\xa6\x6a\xa2\x61\xe9\x05\xad\x13\xbe\x23\xa5\xcb\x17\x59\x46\x00\x76\xb3\x3d\xd7\x77\xa3\xff\x41\x34\x05\xe7\xa2\x42\xe9\x4e\x5f\x0b\x36\x27\xa6\x14\x26\xa6\x14\x5a\xcc\xc8\x8c\x0b\x2d\xb9\x28\x37\xd6\x9c\x92\x8b\xcd\x96\x29\xc8\xcc\xa9\x42\xb9\xd0\x0f\xe8\xe9\xed\xb0\xe7\x34\x42\x36\xbb\x48\x94\x9d\xa7\x1b\xf1\x34\x23\x7c\xbb\x93\x5d\x00\x5f\xee\x24\x3a\x56\x3b\x1d\x6e\x19\x84\x93\xcf\xf0\x00\xf3\xa5\x28\x88\xab\x4b\x11\x43\xcf\x1f\x64\x79\x95\x9f\x6f\xdc\xcc\xdd\x41\xe2\x4a\xfc\x7c\xe3\xab\xdc\x54\x57\xf5\xa1\x8d\x5c\x3c\x99\x82\xf9\x46\xab\x2f\x0e\xf3\xae\x6a\xfa\x9b\x76\x1e\xf8\x79\x78\xbc\x07\x7f\xe8\xda\x85\xf6\xdb\x6a\x60\x4b\xaf\xe8\xe4\x01\xfa\xd0\xb6\x0b\x3e\x1a\xe2\x81\xff\xc3\x52\x14\xfc\x0d\x30\x70\x49\x87\x12\x1a\x92\xe5\x34\x29\x20\xff\x41\xfa\x1f\x9d\xfc\x88\x94\xae\x93\x67\x4b\x8f\xc9\x2b\xe1\xdb\x9d\xc9\xd3\xf4\x9d\xf0\x91\x0b\xb0\xaf\x87\xfe\xb9\x3d\xea\xd6\xa6\x08\x83\x93\x25\x1d\x17\x03\x47\xdb\xc9\x7d\x56\x6d\x9a\x8c\x92\xb9\x3b\xe3\xe1\xb5\x90\x94\x26\xab\x69\xa9\x2b\x95\x8b\x6b\x76\xf4\x26\x73\x31\xde\x70\x73\xd4\xe3\xe8\x93\xed\xf0\xa9\x0e\x32\x04\xfb\x7a\x20\x08\x79\x79\x10\x6e\x96\xbf\xf5\x17\xc2\xe7\x3a\x82\xd2\x14\x72\x05\x82\x0e\x7a\x65\x87\x08\xd3\xc5\x65\x09\xc5\x12\xcf\xa9\x62\xae\xc0\x0b\xe3\x69\x45\x46\x7c\x19\x7a\xc6\x58\x06\xdf\x26\x4f\xd7\x6b\xf8\x08\xd1\xe0\xb7\x5d\x7f\x55\x6c\x5a\xb1\x80\xe4\x56\x6d\x8c\x70\x8b\xee\x1f\x12\x2f\xf1\xa7\xe0\xa2\x0e\xfc\xa6\xeb\x2d\xc5\xee\x19\x18\xdb\x23\x50\xbc\x4a\x04\xbb\x28\x95\xb8\x1c\x0e\x76\x30\xd2\x1c\x32\x15\x6e\xef\x12\x1f\x53\xe2\xc4\x92\x0e\xfa\x87\x0e\xf8\x6c\x07\x8c\xed\x11\xd3\x77\x45\x28\x98\x7e\xbc\x16\xa8\x24\x35\xd1\xd2\x2f\xb6\xc2\x67\x3b\xe8\xf4\xe3\xee\x77\x5c\xef\x8a\xe5\xe9\x22\x40\xb7\xd9\x8b\x6c\xc5\xbf\x1c\x95\xe2\x84\xe8\x3d\x5b\x89\xbb\xc8\x55\xac\xe4\x6f\xf8\x0d\x20\xf7\x24\xdf\x66\x9e\x1a\xcd\x5e\xbb\x80\x4a\x49\x65\x24\x5e\x5f\xa4\x10\x3f\xd5\x11\x45\xf1\x83\xe4\x69\xda\x87\x92\x6f\x33\x27\x84\xed\x75\x22\x40\x53\xe4\xc9\x68\x8a\x34\x47\x8e\x13\x17\xa1\x29\x62\xba\x0e\x4d\x55\xa8\x5a\x01\x47\x05\xe1\x85\x1e\xb8\xa4\x0f\xbe\xdd\x4e\x6f\x39\x65\x54\xd2\xb5\x9e\x85\x59\xe7\xf1\x74\xf8\x62\xbb\x72\x3e\x71\x52\xba\xac\xa6\x5f\xeb\x88\x72\x51\x64\x2b\xc6\xef\xb9\x4a\xd0\x04\x17\xf2\xef\xe0\x77\x5d\xf4\xe5\x0e\x7c\x1b\xf9\x91\xb6\x77\xc0\xcf\xda\x82\x5e\x32\x5d\x58\x10\xf4\xd7\xc9\x6b\x95\xb0\xf5\x76\xd0\x5f\x17\x44\x7f\xf5\xd7\x79\x61\x79\x5b\xf7\x4e\xd2\x49\xdf\x7f\x0a\x17\xb9\x8a\xdd\xb7\x69\xd5\x74\x7e\x2b\x0f\xfc\x45\x72\x9c\x78\x9a\x3f\x45\x2f\xea\x60\x96\x19\x9e\x2e\xc8\xcb\x84\xa6\x27\xb2\x73\xf2\x0c\x2b\xa7\x80\x65\x79\x06\x43\x76\x81\x21\x6f\x0a\x20\x1a\x1e\xc8\xea\x5f\xb4\x01\x2d\xc7\x64\x8d\x00\x64\xeb\x1e\xa5\x52\x73\x84\xa3\x3f\x3b\xc3\x53\x70\x64\xe0\x60\x43\x02\x85\x04\x8c\x5c\x76\xf8\x5d\x1f\x9c\x3f\xc8\x53\xf0\xab\xc1\x83\x19\xe3\x09\x94\x7c\x47\x43\x12\x85\xb6\x36\x68\x29\xb4\xad\x61\x3a\x85\xea\x1a\xa6\x51\xa8\x9e\x3e\x7a\xd2\x61\x9d\xe6\xdd\xa3\x78\x63\x3a\xb9\xac\x38\x58\xe4\x14\x7c\xbb\x53\x97\x9c\x91\x3c\x4d\xaf\xf6\xa9\x19\xdf\xb8\xf0\x19\x3d\xbd\xc5\x5d\x47\x54\x4d\xf5\x4d\x75\x02\x48\x36\x3a\x8c\x22\xa5\xe4\x03\xa6\x4b\x04\xe8\x7d\xf8\x0d\xc8\xe8\xff\x99\xbb\x43\x52\xfb\x66\x48\xd4\x02\x13\x65\x78\xbf\xf1\x7d\xee\x79\xf4\xbe\x62\x7e\xe5\x9d\xee\xf7\x49\xba\xef\x6d\x6b\x1c\xf7\x1f\x96\x69\x44\x4d\x7f\xda\x6b\x8d\xa0\xc2\x44\x4b\xa1\x87\x6d\xfb\x92\xf8\x36\xc0\x8d\x9d\x46\x38\xde\xc9\xba\xde\xd3\xde\xe1\x95\x9f\x24\x6b\x57\x4d\x73\x2c\xf8\x75\x33\xfe\x2e\xf4\x3e\x39\xa9\xe0\x19\xb9\xb6\xfa\xaf\x88\xb1\xfe\xef\xc4\x08\xb5\x5d\xf8\x7d\xda\xde\x49\x4b\x5d\x58\xf8\xee\x4b\xe2\x61\x51\x61\xa8\x90\x45\x6b\xcb\x8d\x70\xcb\x20\xae\x36\x62\xde\x88\xf7\x19\x71\x95\x11\x3b\x8d\x9b\x0a\x01\x1f\x61\xe5\xb9\xd2\x3a\x59\x0d\x37\x76\xda\xde\x63\xb3\xd0\xed\x2c\xc2\x2c\x72\xb3\xe8\x73\x16\x79\x58\x24\xb2\xc8\x6b\x10\xd0\x7e\xec\x64\x44\x80\xa6\x41\xbf\x12\x82\xb2\xce\xc3\x77\xba\x7d\xeb\xa4\x85\xf2\x55\x49\x92\xd7\x48\x41\xb9\x4f\x9a\x43\x92\xfe\xd7\x64\xfa\x7a\xe8\x25\x7d\x52\x13\xd1\xf2\x3a\x92\x81\x9d\x44\xcd\x53\xe9\x3c\xa0\xa9\x1e\xe9\x9f\x44\x4d\x17\xf4\x48\x47\x39\x35\x3d\xf9\x34\xfc\xb6\x0b\xbe\xdd\x29\xa6\xa5\x8b\xa9\xe9\x62\x3a\x0f\x8e\xd4\x11\x35\xed\x07\x82\x96\x9e\xde\xc2\xdf\xc6\xb2\xf4\xc9\x4e\xe5\x54\x79\x5b\xb5\x7b\x9a\x1c\x23\x00\x7b\x0d\xe3\x9e\xae\x9d\xa2\xc4\x11\x6f\xd0\xcf\x7b\x1c\xf4\xd0\x59\x7a\x64\x40\x39\x97\xf3\x97\x1d\x2e\x19\xbe\x36\xec\x81\x54\x0f\x5d\xd7\x25\x9d\x94\xfb\x13\x8d\x5e\xe8\x07\xdd\x3f\x73\x70\x62\x1f\xf8\x5d\x17\xdc\xd4\xc9\x7a\x27\x94\xe0\x30\xc2\xe1\x10\xeb\x71\x18\xe9\x65\xa7\xe1\x97\x5d\xac\xa7\xfe\xd4\xcf\xa8\xb4\xbe\xf3\x67\xf4\x11\xe4\x00\xbd\xb1\x13\xe3\x18\x27\x99\x84\xb1\xac\x89\x0a\x00\xd2\x79\x8a\xa6\x7a\xe0\xcb\x9d\xbe\x19\xd8\x9b\x50\x34\xcf\x8d\xdc\x22\xe6\x01\xfc\x72\xd0\x4b\xfb\x4e\x2b\xca\x69\x7a\x1f\x82\x10\x72\xda\xab\x6c\xfb\xb0\xc7\x25\x42\x4d\xc8\xee\xb1\x89\xde\x8c\x5e\xa7\x1c\x2f\x52\x9c\xc6\xed\x14\x23\x48\xe0\x23\xe1\x60\x33\x89\x73\x0b\xfa\x24\x1d\x37\xd9\xef\x39\x52\x25\x5f\x12\x22\x3e\x95\x40\x85\x1d\x0b\xe6\xdd\x2e\xab\x44\x8a\xfe\x78\x10\x8e\x86\xe0\x3d\xa3\xca\x86\xdf\x75\x79\x61\xf8\xb4\xe2\xd4\x57\x19\x01\xc0\x6f\x80\x5d\x8b\xb6\x2b\x69\xeb\x9d\x6e\x9f\x12\xd5\x04\x60\x9f\x66\x9f\x4e\xc7\x75\xd3\xa9\x97\xe9\xc5\x2d\x00\xfa\x01\x17\x03\xdf\xe9\xe6\x26\x29\xe2\x73\xa3\x0a\xde\x75\x29\x39\x5a\x4b\x4d\x23\x5a\x69\x1e\x99\x81\x67\xea\x9b\xc4\x62\x34\x3d\x66\x3b\xda\xee\x48\x28\x56\xf0\xec\x3b\x32\x62\x66\xf6\x2b\xd9\xf2\x9e\x33\xc9\x33\xf5\xaa\xcd\x37\x44\x80\x66\x62\xab\x7b\x23\x0f\xec\x7b\x51\xe5\xb9\x4d\x44\xd3\xf8\x92\x3c\x07\x6f\x3f\x52\x49\xe2\xf1\x8e\xe0\x91\x4a\x79\x53\x89\x0e\x57\x5a\xe3\xb8\x33\x61\x72\x4a\xca\xe4\x62\xfa\xff\x94\xd1\x8f\x19\xd6\x28\x9d\x24\x49\x07\x1b\x54\x94\xd4\x45\xe2\xc4\x3d\x7c\x37\x03\x00\x7e\xc9\xb5\x09\x55\xda\xf6\x46\x6b\xf8\x4f\x6c\x9f\xea\xac\x71\x1c\x15\x44\xbb\x27\x4a\xfc\xdd\xae\xb2\xa0\x52\x45\xf2\x00\x6f\x2f\xad\x0c\xe2\x1d\xa5\x95\x22\x08\x96\x56\xfe\xfb\x1f\xae\xd4\x59\x55\xae\xbd\xca\xaa\x9d\x36\x1b\x83\x93\x12\xad\x31\x96\xca\x89\x89\xdd\xb6\x32\x86\x2b\x06\x60\xa2\x88\xc2\x82\x7e\x0a\x76\x4a\x1c\x97\x20\xde\xe2\xbb\xe1\x97\x83\xe4\x5d\x7a\x68\x10\xcf\x24\x4f\x60\x6d\x4c\x34\xa3\xf1\xa0\xdc\x88\x77\x18\xf1\x76\x23\x54\x9d\x61\xd1\x76\x16\xed\x60\x3d\x0a\xc7\xc6\x06\x8a\x32\x62\xde\xa9\xa2\x70\xb5\x93\xa2\x82\x51\xc7\x97\x8f\xda\x92\x60\x5d\x17\x8b\xa6\xb1\x68\x7a\x5a\x11\xd2\xba\x5f\xc2\x9b\x94\x72\xb2\xf1\x15\xa2\x39\xf7\xb2\xbc\x8c\x07\xfe\xca\x60\xe3\x76\x12\x8b\x77\x1c\xa9\x94\x6f\x0f\xfa\x2b\x75\x96\x68\xcd\x69\xd9\xcb\x9d\x14\x5e\x4a\x17\x1e\xa5\xa7\xb7\x08\x7f\xc1\x5a\x72\x03\xcf\x94\x55\x19\x0c\xbc\xd0\x8d\x93\x78\xcd\x91\x4a\x72\x86\xfe\xe3\x59\x3c\x53\x8e\x11\x16\xd0\xd3\x5b\xe0\x85\x6e\xd8\x73\x4c\x04\x1e\x74\x40\x88\x51\x34\xa1\xa5\x9a\xa3\xca\xd0\xaa\x9a\x9b\xed\xb5\x38\x29\x18\x0c\x96\x56\x0a\x93\x44\x90\xac\x35\xc7\xb3\x3a\x2b\xe5\x65\xad\x51\x3d\x39\x4a\x2b\x61\xed\x59\x7b\x2d\x3a\xe0\x2a\x6c\x4a\x22\xa7\x2c\x65\xbe\x3f\xa3\x32\x8f\xc3\xb2\x9b\x53\x07\xe5\xbc\x5f\xae\xa1\x22\x08\x1d\x70\xd5\xca\x31\x25\xa5\xbb\xc9\x68\x53\x59\xd3\x01\x72\x2d\x54\x96\x81\x5f\xee\xad\xe4\x55\xa5\x95\xf8\x95\x60\xef\xde\xd2\x4a\xac\x25\x2f\x04\xfd\x95\x28\x49\x04\xa8\x16\x1d\x08\xb2\x5e\xc4\xb3\xa8\xfa\x48\x25\x37\x95\xc4\x06\x1d\x47\x2a\xb9\x38\xfa\x93\x33\xb4\xb6\x25\x88\x0f\xc4\xd4\xea\xe4\x44\x58\x7b\xd6\x61\xe1\xbd\xe5\xae\x42\x4b\xb5\xbd\xb6\x29\x89\x34\x4f\xb0\xaf\xa5\x9a\xf1\x8e\x28\xe7\xeb\x44\x00\xff\xeb\xac\xc3\xb2\x1b\xed\x2c\xb7\x94\x21\x9b\x07\xef\x64\x6c\x85\xfe\x4a\xb4\xae\xc4\x5f\x89\x2c\xa2\x16\x55\x08\x80\x07\x8e\x44\x6f\xf9\x02\x8f\xcf\x15\x5b\x9b\x72\x80\x9b\xa4\x73\x58\xd6\x79\xcb\x2d\x16\x8f\xef\xe3\xa6\x0a\xd2\xc3\xe0\x69\xb2\x1a\x82\x10\xb4\x9d\xcb\xc0\xaf\xf6\xbe\xec\xc1\x9b\x7b\x5f\x51\x4c\x1f\x55\xd9\xf6\x09\x1c\x5d\x39\xe8\x4a\x16\x41\x86\x7c\xde\xbd\x2d\x4c\xaa\x85\xb2\x74\xa1\x5b\xd1\x68\x66\x0f\x8c\xed\x81\xdf\x76\x45\xab\xf6\x9e\xd3\x4a\x31\x5e\xd7\x15\xad\x6d\x8c\xd8\x66\xc4\x3b\x8d\x13\xe5\x20\x2c\x6b\xa3\xbf\xe8\x11\xff\x09\x03\x5d\x09\x0a\xe6\xc0\x69\xe4\xb0\x7d\x40\x6f\xec\x84\x99\x3d\xf8\x03\x23\x76\x18\xe1\x97\x4a\x25\xcf\x22\x07\x8b\x3e\xe0\x55\x7e\x07\xda\xe9\x0d\xfa\x1d\x72\x05\xb2\x05\xfd\x3b\x8d\x25\xda\x9b\x2e\x1b\xbc\x7f\x70\x82\x9a\xdf\x81\xea\x82\x7e\x07\xaa\x9f\xd8\x02\x6e\xf8\x65\x9d\x92\x12\x15\x8f\x9d\xa8\x0c\x79\xc0\x96\x3a\xd8\xe0\xff\xfd\xcf\xc0\x8d\x9d\x3c\x80\xbf\xbf\xc0\xb2\x62\x84\x07\xf2\x74\x37\xef\xaa\xb6\x2b\x15\x52\xde\x39\x25\xae\x20\x27\x23\xcc\xb1\x4f\xb1\x4f\x55\x0a\x28\x45\x74\x3e\x12\xf4\xef\x97\x27\x37\x4e\x91\x35\x8d\x53\xc9\x15\x69\x8e\x4c\xe9\x6c\xce\x72\xcb\x7e\x54\xeb\xae\xe1\xa8\xb0\xfd\x00\xae\x91\x35\x92\x8a\x4c\x2a\x87\xc7\x7b\xdc\xfb\x5d\x35\xf0\x6c\xaf\x3b\xaf\xbb\x90\xc4\x08\xff\xad\xd4\xe4\xce\x32\x80\xab\xca\x28\xbc\xaf\x4c\xc5\x03\x3b\x6f\xab\x2e\xb1\x4d\xb3\xe7\x2b\x39\x33\x8f\x59\x35\xc3\x68\x8a\x64\x58\x5e\x75\x6d\xf6\x51\x25\x87\x5e\xe1\xa6\x11\x4d\xe3\xcb\xdc\x24\xe5\xe2\x87\x5e\xb3\x6d\xf1\xb2\x8c\xb0\x1a\xcf\xd0\xd7\x41\xdb\x39\xb1\x18\xcd\x60\x09\x71\xbf\x8e\xdf\xb0\xbf\x8a\x36\xf3\xc0\xf6\x01\x7e\xd9\xfd\x8a\x72\xe7\x14\xd7\x08\x00\x15\xda\xd7\x36\xe6\xc9\x31\x70\x6e\xaf\x7c\x43\x8c\x43\x7f\x53\x22\x8b\x32\xf9\x4b\x5c\x89\x81\x77\xf6\xca\x57\xd0\x6e\x7b\x99\xa8\x46\x7f\xc3\xbb\xdd\x65\xe7\x5e\x21\x71\x8d\x2f\x13\x35\xfd\x42\xaf\x82\xc7\x03\x7f\xa1\x37\xe8\x2f\x8c\x0f\xfa\x0b\x2d\xbb\xd1\x6e\xa5\x29\x43\x65\xa9\xda\x63\x0e\x3d\x09\xfa\x0b\x79\xa0\xc4\x83\x42\x54\xc8\xa9\x42\x6b\xdd\x6b\xcf\x95\x11\x4d\xe3\x6e\xf9\xa0\xb2\xdf\x15\x7f\xa1\xfe\xd1\xa0\xbf\x50\xab\x0f\xfa\x0b\xe5\xfb\x83\x13\x84\x1a\x37\x73\xb1\xe4\x9e\x73\xaf\xfa\x66\x35\xee\xe5\x6e\x27\x9a\x73\x95\x9c\x56\x71\x6a\x5c\xe8\x5e\x8b\x1c\xf6\x0f\xf0\xdf\x50\x29\xfe\x9b\xee\x7f\x49\xf2\x80\x71\x7f\x20\xdf\xc0\xa5\x69\x9a\x2c\x0f\x2a\xf5\x3b\x2c\x95\xe8\x13\xbc\xd7\x0a\xd0\xa7\xf8\x55\xf7\x66\x85\x77\xb8\xe7\x98\xab\x34\x88\x77\x97\x3a\xbc\xa1\x32\x5c\x16\x2c\x75\xd0\x25\xe7\x26\xd2\x0d\x64\xa2\xc9\x07\xed\x67\x51\x0d\x0f\xfc\xfb\x75\xaf\xf1\x5c\x8c\xe0\x53\x6c\xf4\x78\x0f\x6c\xe9\x55\x8a\x62\xa8\x09\xc1\x50\x2f\x56\xce\x48\x13\x82\x0b\xce\xd1\x65\x9d\x0a\xaa\x31\xe8\xdf\xef\x0d\xfa\xf7\x7b\x58\x7b\xa1\x6d\xad\x47\x4e\x34\x96\xf8\x0b\x4b\x5f\x2b\x27\xc3\xac\xce\xf2\x1a\x7a\x8d\x53\x85\xb6\x30\x70\x53\xa7\x52\x65\x2b\x77\x4b\xf8\x68\x28\x5e\x51\x97\xf1\x17\x49\x3d\x6c\x2a\x99\x71\x68\x33\x49\x3a\xf7\x2a\x99\x64\xd4\x59\x5e\x45\xaf\x72\xaa\xd0\xe6\x28\x35\xe6\x50\x01\x99\xdc\x98\x4f\xe2\x51\x5e\xbf\x1a\xe5\xf3\x80\x81\xa3\xa1\x68\x05\xd3\xd9\xc3\xf2\xa0\xb4\x8a\x65\xe9\x05\xe7\x60\x7d\xe8\xc8\x87\xe5\x9c\xc6\xff\xa1\xb7\x5c\x49\x9c\x9d\x3d\xbf\xb0\xcb\x7a\xd8\xdf\x34\x54\x0e\x43\xbd\x13\xb8\xba\xcb\x1f\x9a\x22\x34\x13\x12\x23\xa8\x5a\x89\xa0\x69\x72\xac\x92\x7b\x87\x43\xb0\x3e\xd4\xec\x30\xea\x04\x70\xf9\x43\x5f\x9d\x29\xd2\x58\xcd\xfd\x1d\x57\xfb\xbe\x50\x82\xab\x87\x45\xa5\x2c\xcb\x7a\x59\xf4\x21\x8b\x76\xe1\x52\x63\xb9\x91\x07\x0e\xf9\x6e\x06\x9e\x0a\x29\x59\x70\xbc\x57\x71\x76\x8f\x32\x94\xa3\xd2\x79\x68\xaa\x87\xae\x38\xf3\xcb\xbd\x39\xfe\x8c\x9b\x27\xb2\xbb\x9a\xfe\x06\xc0\x53\x21\xa2\xa6\xb3\xc3\xee\x3a\x57\xbd\xbd\xd6\x76\xc0\x5d\x68\xaf\x53\x98\x64\xdc\x6b\xed\xf5\x8a\x47\x3c\xcf\x03\x3f\x63\x14\x41\x29\xa3\x64\xd1\xac\xf3\x8a\x9c\x8c\xbb\xd6\x75\xc0\x1e\xad\xd2\x37\x74\xc2\xbc\x3e\xa5\x70\x1d\x0e\x61\xa7\x54\xea\xdb\x03\x87\x06\x15\xd5\xda\xcc\x28\x97\xc1\x66\x23\xce\x35\xc2\xbc\x3e\x1e\xf8\xcd\x1e\x16\xe5\xb2\xc8\xac\xb0\xb7\xaa\xcf\xc1\x83\x52\x33\x03\x57\xf5\xd9\x51\x34\x4b\xcb\x6a\x48\xf7\xd9\xed\x0a\x9e\xc1\x3e\x0f\xc9\xc3\x8c\xb8\x8e\xbf\x48\x7f\xd7\x07\x7b\xfa\xb1\x60\x8a\x20\xc1\xe0\x55\xca\x2a\xfa\xfb\x3e\x28\x87\xb9\xc5\xb0\xa7\x9f\xa8\xe9\xfc\x41\x77\x8d\xfd\x23\x01\x63\xec\x91\x0f\x2b\x85\x43\x32\x37\xdd\xe6\x74\x79\x6d\x82\x29\x62\x05\x3c\xb0\x7d\x24\x38\x95\x72\xd7\x56\x23\x8d\xe8\x7f\xf0\xe0\x9a\x27\x29\x18\xd7\x9f\xbc\x5f\xfb\x14\xef\xec\xc6\xb2\x8a\xc7\x19\xa6\x88\xe5\x23\x54\x53\xaf\x01\xd7\x34\xa8\xba\x5e\x0d\xae\xa9\x11\x5f\xaf\x02\xd7\x54\x68\x5f\x3d\x05\xae\x51\xa8\xca\xa7\x86\x55\x61\x1e\x94\xeb\xdc\x55\x24\xcb\xbd\xcf\x5e\xe5\xe6\xed\xfb\xdc\xd5\x76\xde\x5d\x63\xaf\xb6\xd5\x58\xe3\x25\x48\xce\x89\x00\x39\x91\xc0\x28\xb4\x70\xb5\x45\x44\xd5\x98\xb7\x78\x10\x8f\xf7\x59\x3e\x47\xfb\x70\x95\xc5\x8d\xaa\xe8\x5d\x61\x2b\x15\x5b\x93\x52\x9d\xc2\xa7\xec\x4b\xa9\xd2\x0e\x65\xf4\x3a\x7d\x3f\x98\x22\x56\x0a\x39\xb9\xa9\x21\xa7\xfc\xf8\xfa\xaa\xf5\xfb\xd6\xf3\xeb\xab\xd7\xd7\x30\x13\x32\xe3\x2a\x53\x04\x55\xe1\x7d\xa6\x08\xda\x87\x79\x53\x04\xf1\xb8\xda\x14\x41\xd5\xb8\xc6\x14\x41\x35\xa1\x1a\x32\x35\x54\x4d\x12\x43\x3c\x89\x0d\xed\x23\xaa\x50\x15\x23\x18\x94\xdc\xf9\xfc\x57\x1a\x5b\xcd\x57\xea\xdd\x9a\xaf\x54\xbb\xd5\x5f\x51\xbb\x55\x2e\xd7\x6e\xca\x1a\xaf\x0f\xcb\xa1\xfe\x78\x0f\xae\xf1\xcd\xbc\x9d\xe2\x54\xd7\xa9\x6d\xca\x3f\xd5\x36\xf5\x36\xcd\xc6\x20\x39\xaf\x63\xb6\x03\x00\x80\xba\xa8\xf0\xc9\x7f\xbd\x59\x3c\xa3\x72\xd2\xba\xe2\x6d\x19\x1f\xdf\xbe\x23\xc3\xfb\x18\x2c\x7e\x54\x73\xe5\x91\xed\x0a\x28\x2e\x06\x00\x14\x3f\xb4\xe5\x8e\x61\xb8\x63\x50\x56\x69\xd5\x74\xc5\x19\xec\xec\x2f\x32\x8a\xc5\xc8\x29\x3e\xc0\xf7\xc3\xef\xfa\xc4\x87\xf9\x7e\xb8\x7e\x20\xfa\xca\xe6\xf3\x3e\x51\xc7\xf7\xc3\xe7\x2e\x89\xff\x4f\xf4\x19\x0b\x8f\x9f\x17\x17\xf3\xfd\x13\x07\x78\xb6\x1f\x4e\x1d\x10\x01\x7a\x01\xbd\x88\xd6\x21\x0b\xae\x81\xbe\x7e\x5c\xad\x00\x5e\x01\xfb\x14\x50\x05\xbf\xee\xa7\x43\x03\x44\x4d\xb7\x87\xb3\x12\x8a\x3d\xdc\x9d\x3a\x6c\xb1\x88\xc8\x82\xd7\x59\x3c\x68\x1d\x7e\xd1\xf2\x39\x7a\x11\xbf\x60\x71\xa3\x17\xd6\xbf\xb0\xfe\xc5\xf5\xeb\xd6\x5b\xd6\xd7\x94\x67\x91\x13\x8c\xe2\xde\xbc\xc6\x5f\x88\xc4\x12\x7f\x21\xf2\x28\xe0\x73\x05\x4c\x94\xe8\xde\x84\x62\xe4\x56\x86\x18\x3b\x19\x8c\xe5\x7b\x75\x16\x27\xa7\xd1\xdf\xad\x4b\xd7\xce\xb4\x16\x23\x27\x51\xd3\x79\x61\xbc\x1f\x09\xd1\xc3\xd0\xc7\xb0\x2c\x9d\x1d\xa6\x8f\x87\xe1\x8b\x83\x5e\x59\xab\xb3\xaa\x7c\x43\x02\xb0\xef\x87\x87\xfb\x42\x4e\xb9\x8f\xb1\x41\x00\x00\x7c\x71\x50\x34\xf3\x03\xd1\xf9\x91\x01\xda\x3a\x00\x7b\xfa\xe5\x6d\x70\xcb\xa0\x08\x32\x7a\x9d\xc8\x09\xa7\x0e\x84\x9c\xf2\x41\x61\x4c\xa4\x5c\xee\x43\x55\x44\xeb\xfa\xfc\xd0\x3e\x92\xe8\xf2\x1c\xe2\x89\xc6\x25\x1e\xaa\x8e\x5f\xc0\x25\x84\xcb\x2c\xf2\xc3\xda\x47\x44\x2a\xd5\x37\x35\x56\x4c\xf1\xa4\x7c\x9e\xe2\xf6\x85\xf4\x87\xb5\x67\x3d\x58\xec\xad\x46\x22\xf6\xf4\xf2\xc8\x83\x3f\xef\xdd\x87\x3e\xc7\xee\xde\x2a\xe4\x2e\xa7\xdd\x03\xe2\x72\x72\x38\x31\xfa\x43\x35\xa9\x74\x68\x40\x40\x4a\xc2\x7a\x01\x55\xe1\x17\xd1\x3e\xbc\x0e\xf1\xd8\x82\xaa\xe9\x85\xe1\xdf\xb4\x52\xad\x08\xcf\x2b\x60\x9f\x02\x84\x84\x62\x54\xa5\x74\x9c\xb6\x1a\x46\x28\x4f\x17\x3e\xe6\x81\xac\x71\x2b\xd7\xbf\x2d\x83\xf6\xe8\x22\x5c\x5d\x5a\x58\x82\x79\x05\xec\x53\x40\xf4\x35\x9d\xd2\x71\x96\x16\xda\x6a\x18\xec\x45\x82\x10\xf3\xb5\xab\x6c\x6f\x33\x19\xb1\xd7\x30\x70\xcb\xa0\x10\xfb\xf5\xde\x32\xd7\xc4\x10\x3b\xe5\xd1\xd8\x1a\xee\x06\x6c\x0a\x93\x21\xfa\x6f\x61\xec\x94\x13\xb0\xb0\x40\x8c\xf8\x54\x22\xc5\xc0\x1d\x83\xa8\x4a\x04\x68\x9f\x50\xa2\x98\xfd\x02\x11\xa0\x6a\xc4\xdb\x9d\xa8\x06\x09\x74\x5a\x78\x95\xc0\x20\xc6\x16\x0d\x46\x41\xaf\x7c\xc8\xcf\x18\x04\xfd\x3f\xcf\x39\xc9\x7d\x7e\x26\xa1\xb8\xb1\x8a\xdc\x19\xf4\x33\x8d\xfb\xc8\x74\xa5\xe1\xc9\xa4\xa0\x58\xd4\x58\xe3\x67\x7a\xab\xe5\x54\x2c\x70\x2a\x53\x84\x2e\x19\xc4\x4e\x39\x2b\xa3\x9f\x4f\x16\xb4\x09\x5e\x31\x82\x5c\xd0\x15\x76\x08\x4e\x69\x44\x1b\x0b\xe5\xb0\xcd\xc5\x78\xb0\x90\x56\xbc\xaa\x2a\xa6\x0a\x55\xc1\xb8\x7e\x9b\x8b\xc1\x4e\x89\xf7\x41\x38\x34\x68\xab\xc1\x82\x4d\x30\x15\x2f\x10\x79\xe4\xc4\xd5\x68\x0a\x9d\x16\x46\x55\x68\x1f\xe2\x51\xb5\x87\xe1\x81\x90\xb8\xbb\xa2\x59\x3b\xca\x25\x49\x0f\x10\x8d\xfd\x33\x59\x23\xdd\x4f\x62\x94\xeb\xc4\x9f\xa4\x85\xf2\x42\xc9\x40\xf4\xca\xe0\x0e\x49\x92\xa7\x4a\x0f\xc8\x89\x52\x50\x8e\x97\xee\x97\x35\x24\x6e\xfd\x5e\xe5\xc1\x73\xc9\x7b\xb5\x53\x15\x0b\xd9\x43\xf3\xe7\xd7\x57\x26\x57\x9a\xff\x07\xef\xc9\xe8\xad\x40\x7b\xe4\xe9\xda\x04\xb8\x66\x20\xb4\x87\x8c\xc8\x71\xf0\x0f\x03\x4d\x7b\xc8\x08\xfe\x4c\x4f\x31\x34\xb9\x68\x4c\xae\xd4\xaa\x42\x15\xf0\x0f\x03\x6c\x46\xbf\x1e\x1e\x3f\x4f\x3f\x7f\xde\x08\x5f\x1c\x64\xe1\xc7\x83\x38\x6a\xe2\x6e\x25\x5c\xe2\x3d\x52\x22\x97\x20\xae\x4b\xde\xab\x9f\x46\x1f\x0f\x27\x26\xea\x2c\x7b\x12\x75\x3c\x78\xad\x2e\xa3\x5f\x8f\xf6\xd0\xef\x9d\xaf\x5c\xfa\x8f\x7b\xc7\xab\x5e\x79\x69\xbe\x02\x52\x81\xf8\x34\x7f\x0c\x3e\x74\x01\x6f\x73\x6f\x45\x55\xf6\x7d\x02\x97\x01\xf9\x41\xf8\xc8\x05\x7a\x51\x07\x4f\x89\x0f\x94\x24\x0b\x5a\x4d\xb0\x22\x02\x90\x60\xab\x0d\x8a\x7a\xb7\xe2\x28\x4f\x5d\x14\x41\x77\xb1\xac\xf2\x25\x88\x33\xf9\x0b\xb0\xa8\x5f\xbc\x81\x2a\xc4\x24\xfe\x02\xfc\x72\x50\xbe\x47\x3b\x5d\x4c\x9c\xe8\xaa\xb4\x53\x15\x29\x2a\xc8\x45\x45\xaa\x0a\x72\x0a\xf2\x7d\x70\x68\x50\xa0\x70\x85\xce\x9a\xa8\x4f\x90\x26\xf9\x62\xad\x11\xaf\xa8\xca\xe8\x57\xa1\x3d\xf6\x0a\x87\xac\xd2\xce\x70\xd5\x8a\x0b\x95\x0d\x1d\x72\xac\xa8\x57\x3a\xb6\x5a\x1e\x08\xc5\xb8\x5a\xf7\xe6\xa6\x8b\x4a\xa4\x7d\xf3\xa5\x8b\x4a\xa8\x7d\x73\xe3\x45\x25\xd6\xbe\x69\xbd\x88\xaa\xc2\x3e\x8d\xb6\x4b\xaf\xd2\xb7\x3b\x38\x8d\x29\x62\x4d\xb4\x3e\x18\x0c\x06\x83\xb6\x9d\xae\xda\xa0\x37\xad\xa8\x22\x02\x9a\x2a\x48\xec\x04\x59\x5b\xad\x6b\xa7\xc3\x14\x49\x2b\xf6\x06\x92\x89\xd7\x55\x5b\x1f\x01\x25\x92\x5e\x1e\x96\x16\xca\x54\x50\xbc\xdf\xbd\x47\x5e\xa8\x8d\x8f\x9e\x8e\x57\x7c\xa0\x82\xa2\x44\x43\x05\xa0\x1c\xc2\x83\x19\xe1\xfe\x44\xdf\xa8\x75\x51\x85\x9a\x72\x54\xa8\x28\x11\x54\x68\x28\x39\xbe\x22\x02\x44\x50\x01\x28\x11\xf0\x14\xa3\xc4\x4a\x70\x33\xf1\x5e\x00\xca\x3f\x29\x8e\xc8\x0d\x01\x40\xd9\xf9\x48\xa4\x55\x06\x40\x1d\x8e\x44\x22\x7b\x01\x00\x89\x91\x48\x24\xa2\xc4\x8d\x75\xfc\x45\x38\x32\x20\x6f\xc6\x98\xa8\x69\x73\x58\x70\xf0\x40\xa9\x91\xbd\xda\x24\x38\xf7\xbc\xe8\x88\xde\x9d\x89\xba\xdc\x35\x05\xae\x19\x2c\x37\xc2\xcc\xfe\xe8\x5c\x51\x3f\x4c\xb8\xc4\x66\x71\x89\xd8\x29\xc7\x4e\x64\x0d\x66\x7b\x86\xf7\xb1\xb4\xb8\xd7\x1e\x79\x7a\xe9\x93\x6f\xdc\xfe\xee\xdf\xef\xfa\x8f\x07\x2f\xf6\xa0\xb7\xee\xb6\xcd\x5e\xf0\xd7\x17\x9f\x79\x3a\xf1\xdd\xad\xe3\x7d\x4d\xc5\x0f\x6d\xd1\x69\xa3\x01\x5f\xec\xe0\x2f\xc2\xa2\x7e\x5c\x63\x35\x73\x6a\xf8\xd6\x20\xfa\x08\xae\x1f\xc4\x4e\xa9\x84\x53\xc3\xfb\x07\xe0\xdc\xf3\x78\x8a\xce\xba\x5d\xbe\x92\xd1\x4f\x19\x85\x98\xaf\xf1\x57\xce\x32\xe7\x6e\xdc\xac\xbd\x86\x3f\x42\x35\xd0\xdb\x07\xc9\x45\xb1\x9b\xbf\x08\xb7\x5c\x12\x01\xda\xcf\x42\xed\x00\x83\x6a\x6d\x07\xe0\x7d\x83\xe2\xc7\x0a\x7b\xdb\x2e\x89\x1f\xf3\x80\x2e\xea\x8f\xce\xde\x33\xe8\xaf\x45\x9f\xb9\x6a\x83\xe5\x44\x15\x3a\x80\x6a\x5d\x07\x94\xbd\x6b\x5d\x07\x74\xd6\x18\xe5\x72\xaa\xe0\x7c\xd7\x27\x96\xf3\xa0\xe9\x33\x72\x8e\x29\x7f\x74\xe5\x5b\x6c\xaa\x7f\x15\xdc\x31\xe8\xd5\xeb\x44\x89\x07\x70\x64\xc0\x21\xf7\x89\x6e\xfe\x92\x62\x66\x5e\xfe\x12\xfc\xae\xcf\x5d\x8d\xab\x50\xb5\x5d\x09\x1f\x02\x76\xa2\x1a\x25\x17\xc1\x85\x61\x41\xe2\x01\x7d\xff\xa0\xb8\x9e\x97\xe1\x77\x7d\x8a\x8e\x5f\xe2\x65\xb7\x17\x16\x0e\xc0\x17\x07\x15\xa5\x02\xb4\x1f\x7a\xfb\xc4\xcd\xbc\x0c\x3f\xef\xc3\x82\x51\x3b\x05\xf2\x7d\x58\xd0\x27\xe0\xdb\x4d\x11\x74\xbb\x22\xd9\xe6\xe8\x5a\x56\xab\x56\x06\x5b\x79\x99\x7e\xee\x92\x22\x19\x40\xb7\xc3\xcb\x97\xa2\x67\xd4\x17\x95\x0f\x8e\x0c\x44\x77\xbf\x1d\xbe\x20\x2b\x07\x43\xaf\x1f\x30\xd2\x73\xe5\xed\xa6\xa4\x76\x61\xa7\x02\x8a\x14\x5d\xc7\xd8\x42\xb3\x1e\xb8\xcb\x9e\x1a\x37\x3a\xfc\x5e\x05\xfb\x3e\xf5\xde\xdc\x47\x4f\x9f\xb1\xe3\x3f\xf7\xa5\x46\x71\xdc\xc7\xbe\x0f\xb6\x04\x8f\x1f\x3a\xdc\xac\x30\xa3\x6c\x89\x9d\x46\x69\x3b\x17\x17\x4d\xa5\xeb\x07\xc4\xc3\xbc\x0c\x9f\xbb\xc4\x46\xa7\xd6\x47\xb9\x66\xb5\x6a\x9a\x5c\x64\x26\x6d\xfb\xfb\xce\x86\x63\x6f\xde\x73\xd5\x7d\xed\xed\x9d\x63\x3e\xed\x5f\x27\xdf\xbb\xa1\xf9\xaf\x5d\xf9\xff\xfa\xfe\x9d\x99\xeb\x36\xd3\xef\x7c\x33\x90\xfb\xd6\x3b\x2f\xea\x4b\xde\x7d\xf7\xa3\x95\x15\x8b\xde\xa5\x7f\x2c\xfd\xa1\xc8\xeb\xf5\xce\x88\x5a\x40\xa8\x8e\xa8\x42\xf5\xb5\xcc\x80\xb4\xc8\x97\x28\x41\xf9\x52\x46\xbf\x3e\xa3\x9f\x30\xc5\x39\x3f\xe4\x3d\x2d\x44\xec\xdb\x84\xd1\x3d\x62\x2a\x7f\x19\x51\x36\x15\xd2\xd8\x62\xe0\xeb\x43\x22\x8d\x00\x52\x23\x0e\x25\x8a\x15\xfc\x19\x34\xc9\x36\x59\x98\xdd\x90\x78\xb9\xcc\x67\xbf\xdc\x4c\xae\xdb\x87\x1c\xc8\x85\x0a\x8c\xca\xed\x04\x8e\xb6\x8b\xd4\xae\x71\x6a\xd7\x18\x25\xac\xb1\xe7\x89\x80\x8f\x47\x66\x5b\x2e\x0f\x42\xb9\x7e\xb3\x29\x52\x6a\x3e\x62\x26\xf1\x13\xad\x7c\xde\x65\xc6\xb9\x69\xb2\xed\x75\xf4\x86\xed\x55\xb4\x59\x00\x7c\xbc\x7d\x83\x8d\xe5\x81\xed\x44\x79\xe9\x86\xd0\x06\xa2\x0a\xb1\x78\x83\x8b\x85\x3d\xc7\xe0\x1f\x4f\x88\x8b\xf8\x0e\x85\x1d\x71\x31\xdf\xa2\xb0\xb6\x89\x02\x13\xe5\xe8\x26\x33\x80\xc3\x21\x07\xfd\xc1\xad\x68\x53\xa6\x34\xdd\x7a\xdf\x0c\xbb\x2c\xa6\xc3\x40\xd7\xc4\x28\xc6\x9e\x6e\x7f\x80\x51\x6a\xe2\xf3\x97\xcf\xc9\xbe\x78\x2c\xa3\x74\xf4\x80\x5d\x16\x1b\x7f\x43\x39\xcb\x4c\xbc\x28\x0b\xa4\xfa\x4e\xd2\x60\x18\x26\x0c\x39\x5c\xe9\x81\x54\x5f\xb3\x4b\xa6\xef\x8c\x0e\x3d\x81\x54\xdf\x3f\xb0\x4c\xa7\x0e\x47\x77\x5a\xa7\x34\xcd\x0e\x49\xe7\xfb\x9c\xfe\xd3\xa8\x32\x65\x8a\x78\xc3\xf6\xcb\x4c\x06\xa7\x5b\x3f\xc4\x88\x11\xa2\x12\x97\x09\x00\x3d\x6c\xbf\xc2\x88\x45\xc2\x72\x72\x6d\x82\x61\x6c\x6e\x7c\x19\xe7\xf6\xbe\xe2\x53\xd3\xda\x16\x6c\x46\xaf\xa3\x57\x71\x2e\x7a\x03\x6d\x66\x7e\x7b\xfe\x3a\xce\xed\x7d\xc3\xd7\x8d\xcd\x8d\x56\x9c\xdb\xbb\x91\x3b\x81\xcd\xc8\x8a\x73\xd1\x46\x7a\xd3\x09\x71\x3f\x0c\x74\xe1\x3a\x74\x15\xd7\xa3\x6b\x19\xeb\x5b\xf1\x56\x74\x1d\x6f\x43\x37\xa0\xbb\x8d\x2e\x6f\xb3\x77\xb9\x87\xed\xa7\xf1\x56\xd4\x8e\xb7\xa1\x0e\xfc\x26\x3a\x85\xdf\x42\x9d\xf8\x2a\xaa\xc3\xd7\x50\x3d\xbe\x8e\xb6\xe2\x1b\x68\xdb\x6f\x5f\x76\x70\x3b\xda\x8a\x3b\xd0\x36\x7c\x0a\xd5\xe1\x4e\x54\xef\x3e\xbd\x87\x3e\x7a\x92\x96\xba\x7c\xa3\xff\xfe\x59\x7b\xd6\x09\x5c\x89\x18\xbc\x17\x3d\x3f\xa1\xd3\xc9\xed\x21\x33\x51\x85\x72\xa3\x0f\x1a\x19\xbc\xb7\xf7\x79\x1f\xc5\xf0\xc0\x5f\x59\xca\x84\x2a\x89\x2a\xb4\x37\xc4\x10\x55\xe8\x79\x6c\x6d\xac\xc4\x1b\x7b\xf7\xfa\x42\xee\xe7\x5d\x0c\xa1\x9a\x4b\xec\x1b\x6d\x56\x7a\xa8\xa5\xf6\xc9\x40\x6d\x7e\x80\x5e\x3e\x5a\x5b\x10\xa0\xff\x30\x0a\xdb\x6e\xf0\xea\x89\x8f\xac\xfd\x94\x8f\x6a\x46\x66\x7b\x2e\xfc\xe9\x16\xfc\xc7\x0d\xfa\xa7\x5b\xb0\xed\x06\x1c\xbf\xc5\xab\xfc\x95\x8d\xe6\xa0\xbf\xb2\x37\x37\xaa\x38\xe5\xd9\xf8\xad\xf4\x35\x81\xf4\xbc\x80\xb8\x9c\xc4\x8b\x30\xbd\x20\x90\x9e\x1f\x40\xa1\xda\xa7\x02\xb5\xe6\x80\x08\xd0\x6c\x1c\x42\x77\xf1\xc0\x36\x0b\xcf\x2e\x9d\x05\xdf\xbd\x1a\x24\xd7\x43\x77\xe1\xbb\xd2\xee\x25\x17\x19\x74\xd6\xde\x6d\x3b\x63\x4c\x0b\xa0\x94\xac\xac\x98\x14\x94\xc2\xa2\xf9\x89\x89\x89\x29\xf3\x95\xbf\xf5\x29\x78\x7e\xda\xbd\x31\x21\x34\xdf\x11\x00\x72\x0c\x3f\xd7\xaa\x09\xf6\xc7\xf9\x46\x6d\xbd\xde\x86\xfa\xab\x48\x5f\x9e\x85\xcf\xa1\xd9\xbe\x54\x06\x4e\xbb\x8a\x67\xe7\xa6\xcc\xd3\xe7\xa6\x94\xa6\x30\xda\xb9\x58\x9f\xe5\x8b\x31\x05\x90\x9e\x29\xd1\xaa\xf8\xf9\x62\x00\xe9\x6d\xbd\x78\x76\xa2\x14\xd0\xc6\xe2\xd9\xa6\x22\x34\x9b\xc1\xfa\x44\x53\xb1\xbe\x53\xdc\x1e\x0c\xa4\x72\xdd\x3c\xf0\x9d\xd2\xe1\x23\x69\x1a\x79\x9e\x58\x34\x4f\xff\x50\x0a\xb9\x33\x34\xa0\xf4\xb4\xd3\x26\xa6\xa7\xfa\x53\x0c\xb3\xe7\xe9\x89\x2a\x34\xa0\xec\x81\x8f\x58\x8e\xa5\xa9\x25\xd5\x46\xdf\x47\x7a\xbd\x0e\xcf\x4f\xaf\xbf\x46\xe6\xc4\xa6\xf8\x66\xa5\xff\x74\x55\x8e\xb1\xde\x9b\xe1\x9b\x6e\x9d\x6b\xc4\x29\x56\x9f\x4f\x65\x95\x51\x0a\xeb\x53\x59\xef\x5d\x9f\x62\x1d\x43\xf3\x19\x1d\x9e\x6f\xd5\x28\x0b\xae\xc4\xa6\x70\x3a\x6b\xb7\x2e\x3d\xfe\x9a\x3c\x1d\xa7\x58\xcd\x26\x59\x56\x99\x64\x94\x82\x43\x9c\xca\xda\xbd\x3e\x85\x3b\x62\x14\x01\xea\x46\x67\xd0\x59\xd6\x98\xd1\xdb\x6d\x74\xf4\x9e\x41\xc7\x7c\x89\xac\x72\x7f\x31\x8a\xa0\xf7\x18\x3a\x82\x8e\xb3\x88\xa0\x16\x16\x75\xdb\xcf\x94\xeb\x7a\xcf\x46\x33\xef\x2d\x74\xd4\x76\x76\xfd\xb1\x8c\x5e\xe2\x15\x23\xbd\x47\xd0\xdd\xae\x5e\x5f\x4c\x22\xb4\x5c\xcd\xc0\x2d\x96\xa3\xa8\x05\x1f\xef\x07\xe8\xf8\x84\x48\x8a\x38\x61\xa2\x09\xdd\x2d\xbf\x80\x8f\xf9\xda\xe1\xb1\xab\x3a\xdc\x62\x21\x0a\x92\xe5\x88\xb9\x6d\xfb\x0e\x5b\x09\xc7\x07\x66\x47\x6e\xdd\xbc\x7a\xfe\x4c\x4b\xe3\x57\xd5\xbb\xfe\xf2\xbc\xe9\x21\x5d\x04\xa7\x24\xe2\xf9\x69\xea\x05\x31\x29\x4a\xf1\x7b\x16\xcf\xcf\xca\x4a\x8b\x8b\x39\x8b\xce\xe2\xde\x44\x4b\x6f\xa2\xb7\x19\xeb\xd3\x8a\xc2\x59\x64\x0c\x9d\x71\xe8\x2c\xbd\x9c\x2a\x74\x06\x75\x33\xf6\x59\xb6\xbb\xbc\x59\x59\x59\x59\xe8\x98\x23\x2d\xc9\xfb\x8f\x83\xd7\x6c\xc4\x94\xe4\xfd\xc7\xb7\xd7\x82\xb6\xa3\x2e\xe5\x02\x3d\x50\x3d\x0b\x1d\x11\x8a\xed\x2d\xf6\xe3\xee\x3e\xdc\x92\xa1\xb0\xc2\x69\xe0\xdf\xaf\xea\xf0\x71\xcb\x51\x74\x9c\x53\xc3\xaf\xae\x36\x93\x5e\x7c\x24\x2b\x2b\x8b\xb4\x84\x66\x11\x55\xe8\xae\xea\x59\xa4\xf9\xff\x3f\xed\xbd\xff\x46\xdb\xf9\xff\x4d\x7b\x22\x24\xb8\x72\xdd\xe6\x00\xc5\xc5\x92\xbb\xbb\x75\xbe\x3b\x1d\xc6\x72\xe3\x6f\xb1\x2d\xe0\x4b\xb0\x3b\x59\x0f\xeb\xc5\x4e\x86\x8e\x1d\x52\xa6\xe2\x7d\xd7\x1b\xae\x5f\x47\xe7\x18\xb0\x60\x4d\x51\xb1\xf7\x78\x44\xfa\x5e\x9e\x02\xeb\xaf\xc3\xa7\xae\xc2\x6f\x80\xf4\x3d\x09\x29\x6b\xeb\xaf\xdb\x9c\x1e\x87\xdb\x09\x17\x5d\xa3\xe3\x6f\xc0\xe1\x90\x7d\x84\x51\x60\x9f\x02\x71\x18\xcd\xc2\xfd\xe8\x2e\x87\x00\xbe\x9f\x25\xab\x7c\x38\x91\x53\x87\xee\xd2\x79\xfc\xb3\x2c\xb3\xbc\x41\xff\x2c\x4b\x3f\xba\xcb\x3e\x4b\xa1\xd6\x48\x12\x26\xa8\x29\xbe\x30\xc2\xc0\x07\x6e\xd0\x31\xd7\x15\xf8\xfc\x75\x11\xa0\x25\x68\x19\x6f\xb6\x2d\x0e\xda\x96\x46\xbf\x5a\xbf\xee\x6d\xb6\x2f\xed\x35\x1b\xf1\x1b\x9e\x30\xa1\x4a\x6c\xcb\x7a\x73\x1b\x5f\xe1\x54\x44\x71\x68\x25\x02\xa2\x25\xa8\x9f\x45\x61\x25\x24\xa2\xc5\xf0\xe6\x98\xa8\xa6\x55\x11\x1d\xae\xb4\x98\xd1\x52\xbc\xd7\x92\x8b\x96\xf1\x1a\x7f\x25\xbc\xd4\x8d\x77\xa3\xc5\xb8\x0c\x2d\x61\xc4\xe5\xd1\x97\x97\x22\x40\x33\x69\xb9\x75\x22\x20\xa7\x72\x89\xfd\xa9\x46\x38\xda\xce\xd2\xe7\x6f\xa0\x64\xe6\x5f\x47\x4f\x66\xc5\xc3\x27\x86\x53\xc5\x24\xc5\xbe\xd1\x42\x7f\x8a\x41\x3f\x6f\x61\xd4\x67\x21\x18\x3e\x94\xee\x9b\x16\x84\x53\x87\xb9\xeb\x56\xca\x08\xc1\x30\xdb\xf8\x00\x77\x8d\xe1\x1f\x24\x2a\x7e\xbe\xed\x01\x7e\xbe\x08\x90\x1e\xa6\x0e\x97\x68\xaf\x33\xc6\xac\x34\x75\x82\x06\xcd\x67\xd3\x74\x9c\xca\x5a\x84\x52\x12\x13\x95\xd8\xc1\x60\xbd\xce\xaa\x4e\x4b\x42\x7a\xe5\x42\x16\xa3\x47\x7a\x26\xba\xa1\x3f\x25\x95\xd3\x28\x86\x91\x96\xc4\xb8\x17\xb9\x1e\x83\x9f\x8c\x43\xe3\x48\xf5\x22\x4f\x16\x97\xb0\xd1\xa7\x95\x04\x79\x72\xda\x7b\x59\xde\x86\x17\x46\xe0\x9b\xc3\x44\xc3\x17\x8b\xc0\xdb\xe0\x1e\x41\x0b\xd3\xd4\xe8\xc1\xf2\xb4\xbf\x79\xcb\x79\x75\xb7\x43\x9e\x94\xc5\xc5\x67\x65\x25\xc0\x12\x72\x33\x58\x42\x86\x18\xa5\x84\xdc\x31\x6c\xf4\x2f\x82\xed\xe3\x02\x05\xb3\x46\x0e\x3d\x18\xe4\x2e\x0b\xea\x80\x86\x1b\x62\x3d\xf5\x81\x11\x94\x5e\x0f\x6e\xa2\x07\x44\xc0\xc7\xc4\x3e\x90\x92\xbe\xa0\x84\x0c\x5b\xff\x1b\x5e\x18\x6f\x26\xe7\xa1\x71\xc4\xf5\xa0\x10\xdb\xad\x96\x67\xc7\x2e\xe4\xa6\x36\xfc\x7d\x04\x5e\x18\x6f\xa8\x1f\x91\xd5\xd1\xe7\x7d\x4c\x89\xbe\x0f\xb6\x8f\xe3\x85\x52\xd8\xbf\x88\x1b\x82\x4f\x8e\x78\xc3\x84\x0a\x96\xc3\xf6\x71\x07\xdd\x3e\x2e\xa8\x45\x3e\x8a\x38\xcc\x64\xe0\x07\x5d\x8f\x79\xb5\x54\x89\x65\x11\x47\x05\x19\x0d\x2c\xd0\x4f\x29\xd6\x70\xea\x39\x05\xbf\x53\x5a\x0d\xfc\xad\x7d\x4c\x69\xc1\x9c\x95\xbf\x9b\x12\x5c\x09\xa6\x4d\xb4\x22\xa5\xb4\xc5\x1a\xee\xd7\x36\xe5\xa1\xf7\xf6\x80\xfb\xb6\xef\x00\xe0\x99\xd5\xa5\x1f\xd9\xb3\x90\xb3\x46\xac\xf9\xcc\xe3\x6a\x03\xad\x2e\x17\x98\xed\x98\x3d\xf7\xcf\x1f\xdc\x55\xed\x74\xdc\x3d\xd7\xf9\xc1\xdd\xd5\x20\xed\xce\x03\x56\xcf\x9d\x73\x93\xf3\xef\x9a\x9b\x9c\x7f\x67\x35\x98\xf5\xa7\x3f\x61\x6b\x72\xf2\x81\x03\x9e\xda\x34\xf0\x57\x70\xdb\xde\x97\xf7\x62\x6b\x5a\xbe\x6d\xc6\x23\xd3\xb0\x75\x2e\xdf\xfa\xc2\xb3\xc6\x94\x17\x76\x97\x14\xac\x0c\x16\xb0\x2b\xc3\xbb\xc1\x57\xf1\xb6\x37\xbe\x4a\x7d\xe5\x8d\xab\x3f\x66\x6d\x19\x72\x39\x80\x57\x10\xde\x78\xe3\x8d\x2d\x2b\xd9\x2f\x1f\xfe\x12\xcc\x01\xb3\x66\xa5\xa4\x6c\xd9\x52\x12\x3c\xd4\x9c\x62\x5c\xb9\x52\x08\x22\x03\x6b\x4c\x4c\x4c\xd4\xab\x37\xdd\x52\xa7\x42\x3a\xc2\xa2\x45\x2c\x7a\x6c\x93\xac\x86\x3b\x86\x61\xfb\x4d\xda\x12\x69\x85\xb6\x5b\xf0\xc1\x51\xf8\xf1\x2d\xf8\xfe\xad\xda\xa7\x03\xb5\xcf\x06\x6a\xff\x1c\xa8\x5d\x1b\xa8\x8d\xfc\x9c\xae\x0d\xb4\xc2\x45\x91\xda\x2b\x6a\x13\xfe\xe9\xaa\x9a\xdc\x51\x3b\xa4\x26\x49\x62\xf7\x4f\x57\xd4\x24\x9e\x57\x7f\x38\xa4\xa6\x41\xf7\xa6\x21\x35\x64\x46\x85\x98\x86\xb1\x9b\xce\x4b\xea\x66\x72\x43\x0c\xda\x01\xa2\xf8\xb8\x26\x0a\x53\x52\x40\x3e\xb9\x6b\x38\xce\x0f\xda\xa8\x51\x72\xbe\xa4\x44\x7b\x6d\x13\x00\x03\x03\xf0\x3f\xc7\x45\x03\x5a\x2e\x02\x94\x29\x8c\x46\x4f\xa6\xe1\x9e\x9b\xf0\xc2\xb8\xd8\x00\x2f\x8c\x7f\x9d\x05\xdb\xc7\xc3\xfa\x30\xf3\xcc\x4d\xd0\x6d\x80\x11\x10\x51\x47\x16\x7f\x4f\xc8\x8f\x8d\x7c\x67\xc7\xa1\x7f\x7e\x1f\xf9\x9f\x48\x24\xf2\x7d\x6b\x1b\x39\x56\xbb\x39\xc0\x83\x81\x81\x86\x75\x01\xad\x26\x48\x86\x4b\x18\x11\x20\xa3\x92\xa2\x0b\x02\xb5\xb9\x01\x11\xc8\x93\x6a\xcd\x4a\xbe\x86\xbf\x1f\x16\x67\xa2\x39\x22\x40\x50\x4c\x45\xf7\x89\x3a\x34\x57\xbc\x03\xcd\xa3\xe7\x8c\xc1\xa7\xc7\xf8\xf8\xfa\xf8\xd1\x8a\xa9\x9a\x12\x72\x83\x89\x4a\xba\xeb\xaa\x9a\x91\x76\x11\x5d\x0d\x08\x68\x67\x04\x3e\x26\x49\xe9\xda\x80\xd2\x1f\x0d\xec\x94\xd5\xe9\xda\x00\x3d\x3e\x9a\x41\xa7\x8f\x79\xea\x8d\x37\xe1\xa7\xa3\x70\xf2\xb8\x74\xd8\x77\x51\x92\xb8\x01\xe9\x47\x39\x44\xc2\x03\xff\xe7\xf7\x8b\xe7\xa5\xfd\xea\x79\xa9\x89\x89\x31\xa9\x28\x95\x91\xde\x23\xd3\xc5\xe5\xd0\x33\xc6\x07\xc4\xc9\xd0\x33\x56\xab\x0f\x94\x90\x6b\x8c\x2b\xb9\x34\x35\x94\x8c\x93\x1b\xef\xf3\xad\x67\x24\xde\x77\xc9\xa3\x3d\x2f\xed\x92\x9f\x95\x1c\xf2\xb3\x52\x09\x91\x9a\x92\xb5\x61\x7c\x1f\x4a\x6e\x4a\xc6\x73\x1a\xe7\xf9\x26\x35\xcd\xc3\xf3\xe0\xf7\xa3\x16\x88\x52\x19\x53\x40\x4e\xb5\x8e\x73\x01\xb9\xdd\x3a\xce\xa5\xcb\x5d\xd6\x71\xee\x39\xd2\xef\x4a\xc6\xf3\x8c\x30\x79\x0c\x56\x8d\xf1\x80\xb5\x82\xc6\xb9\x9c\xec\x6b\xc6\x73\xd0\x3c\x1e\xd8\x92\xe5\x73\x22\x40\xc9\xa1\x79\x78\x5e\xe3\x5c\xee\xbf\x9a\xe6\xe1\x39\x0a\x2e\x4e\x45\x0b\x70\x1a\xba\xdf\x75\x5f\x09\x6b\xa5\x1a\xe7\xfa\xa6\x28\xb3\xfe\xd4\xd2\x05\x25\xda\x11\xfd\x19\x1e\xc0\xaa\x31\x9f\xdd\x95\x2c\xf2\xa5\xa9\xc1\x43\xf7\x71\x23\x4c\x86\xb1\x9f\x22\x63\x6c\x3f\x45\xae\x33\xa1\xc7\x89\x2a\xb4\x02\x2f\x6e\x5c\x8a\x97\xf4\x2e\x0b\x2d\x26\xaa\xd0\x12\x86\xff\x23\xec\x18\x23\x23\xd6\x5b\xbe\x6b\xfc\x7d\xb0\x63\x2c\x18\x2c\x21\xe3\x5c\x0c\xff\x70\x09\x19\xaf\x81\x01\x3e\xbd\x99\x11\xe2\x8d\xf0\xe6\x18\xbb\x80\x5f\xd4\x4c\xae\x31\x70\x7c\xac\xa4\x96\x09\x18\x1e\xd4\x0e\x1b\x1e\x44\x0f\x06\x8a\x19\x57\xb2\x3f\xd5\x98\xb6\x2c\x61\x79\x69\x2a\xbb\x29\x03\x84\xb2\x89\x2a\x94\x93\x0e\x02\xda\x6b\xa5\xa9\xb5\x20\x90\xae\x0d\x30\x70\xf2\x38\xc4\xd1\x23\xa9\x94\xaf\x30\xf8\x61\xa3\x18\x41\x0f\x37\x00\x15\xbc\x30\xce\x46\x3b\x52\x89\x7c\xb7\x54\x2e\x27\x76\x0f\x73\x6a\xb8\x28\x12\x26\x33\xc4\x53\xf0\xc2\x38\xfc\xcf\x71\xfc\x3b\x78\x61\x5c\xa0\x1c\xf2\x95\x66\xf8\xe8\xb8\x54\x46\x54\xfe\x54\xa9\x9b\x53\xa5\x9d\x76\x02\x95\xb4\x8b\x7c\x09\xf7\x8e\x89\xbb\xc8\x9f\x5c\x4b\xdc\x8b\xe1\x7f\x8e\xc3\xe5\x23\x3c\x10\x6b\xe9\x0b\xe3\x78\x71\x42\x1c\x5a\x8a\x97\xa0\x65\x78\x71\x5a\x1c\x51\xc3\x8f\xc6\xa3\x16\xed\x5f\x0c\xdb\xc7\xe1\xc1\x31\x2e\xcc\x64\x71\x03\x59\x59\x78\x29\xa7\x32\x45\x2c\x8b\x8d\x51\x23\x67\x8d\x4a\x7c\x85\xbd\xe3\x6c\x5a\x52\x82\x4f\x3a\xc8\xa9\xac\xb1\x9b\x7e\x0f\x24\x9e\x53\xcd\x7b\xd8\xf6\xa8\x11\xfe\x65\x94\x75\x3d\xca\x34\x3d\x22\xef\x6b\x26\xb7\x4b\x07\xc9\xb7\xe8\x21\xbc\xb4\x74\x79\x68\x39\x51\x85\x32\x19\xd7\x23\xf5\x11\x0a\x3d\xc4\x08\xd4\xd7\x4b\xcb\x1e\x2f\x5b\xd9\xac\xbd\xc1\xf8\x17\x97\x3e\x0e\xbf\x1a\xe3\x94\xde\x91\xc7\xe5\xd9\xf0\xa3\x09\x1e\xa2\xdc\x88\x1e\x85\xa5\xc7\x95\xa1\xa8\x08\xfc\xd5\x18\xd7\xc6\xc0\xad\xb7\xc4\x99\x46\x48\x86\x61\xfe\x08\x5a\x64\x7b\x8c\xcd\xe8\xa7\xc8\x25\xc6\x21\xc7\x7d\xbd\xb8\x6c\x51\xb3\x76\x84\xe1\x97\x11\x15\x1f\xb1\x3d\xac\x78\xd6\x52\x21\x83\xbf\x8b\xc4\x47\x7b\xbf\xe7\x65\xbc\x34\x2d\x49\x8e\x4d\x08\xf0\x40\x56\x89\xe3\xbb\x41\x19\xc5\x0c\x0c\xd0\xa0\x9b\x56\x77\xc3\xad\xb7\xe0\xb2\xc8\xa6\x45\x80\x3e\x79\x93\x19\x60\xa2\x8e\x40\x0f\xab\xc5\xe5\x50\x1a\xe3\xe7\x0b\x20\x73\xb1\xb1\x7a\x31\xbc\x70\x0b\x1e\x1c\xe3\xef\x66\xb9\x8b\xfc\x1c\x78\xe1\x96\xbc\x5a\xd0\x26\xc2\x13\x63\xe4\x26\x03\xc1\x2d\x96\x25\x9b\x94\x44\x7a\x3b\x94\xc6\xd0\x42\x78\x73\x8c\x4f\x86\xe3\x63\xbe\x11\x38\x3e\xc6\x3f\x06\xcf\x8f\x6d\x5f\x6c\x58\x88\x16\x2a\x04\x1e\xe5\x64\x78\x7e\xac\x71\xa1\x3c\x45\x6c\x54\x04\x3d\xaa\x88\x77\x61\x5c\x7c\x4f\x39\x1b\xa3\x11\x1b\xdc\xab\x5c\x4f\xa4\x32\xc8\x60\x5f\x65\x7b\x22\x9e\x45\xc6\x83\x76\x53\x2b\xf3\xef\x51\x4f\x89\x71\xa2\x17\xfd\x0e\x6e\x18\x87\x3f\x44\xe0\xe7\x11\xdb\x23\xfc\x1d\x25\xfa\x70\xdb\x8f\x11\x32\x0c\xbf\x8b\xb8\x1e\xa1\x5f\x8f\x08\xea\xe8\x5b\xcb\x94\xa5\x29\xcb\x9a\xb5\xc3\xf8\x21\x12\xfb\xf5\xb2\xb2\x25\x65\x99\x61\xf9\x0a\x89\x15\x80\x7d\xa9\x7d\x59\x3d\x50\x05\x4d\x3e\x29\x91\x3b\x66\x2d\x91\x6e\xfa\x7e\x62\xc4\x5b\xc6\xfa\x9e\x88\x11\x3f\xc4\x03\xdb\x43\xcc\x3f\xbe\xfc\xee\xcb\x4b\x87\xbe\x14\xbf\x75\xbb\x62\xcb\xe2\x54\x31\x32\x18\xfc\xf8\xf3\xa6\x8a\x2f\xa5\xef\xbe\x7f\xf4\xc3\x43\x9f\x7c\x71\xc7\x1d\xf7\xdf\xbb\xb3\xe8\xcf\x3f\x7e\x3d\x76\xc7\x1d\xd7\xd4\xa3\xea\x17\x6e\x2e\xbf\xf9\xff\x06\x00\x00\xff\xff\xb1\xc1\x05\x1d\x00\x30\x00\x00"), + }, + "/Apple2rev7CharGen.rom": &vfsgen۰CompressedFileInfo{ + name: "Apple2rev7CharGen.rom", + modTime: time.Date(2019, 6, 1, 15, 13, 24, 890519957, time.UTC), + uncompressedSize: 2048, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x53\xd1\x86\x1c\x41\x14\xbd\x5a\x59\x25\x56\xf4\x43\x3f\x44\x94\x51\xca\x18\xa3\x45\xac\x7d\x58\x79\x18\xf5\x6d\x57\x2b\xab\xc4\x8a\x7e\xe8\x87\x88\x32\x4a\x19\x63\xb4\x88\xb5\x0f\x2b\x0f\xa3\xbe\x2d\xce\x9d\xde\x65\xbf\x21\x7b\x34\xb7\x0f\xe7\x9e\x7b\xee\xa5\xc8\xb8\xfe\xeb\x17\xbb\x22\xdd\x39\xe7\x9d\xa3\x9d\x73\xf8\xc8\x38\x6b\xad\x33\xe0\x0e\xdc\x5b\xbb\xb3\xd6\x2f\xd5\xd2\xca\x5a\xbb\x71\x2b\x72\xd2\xe6\xc8\x68\xc0\x50\x03\x38\x43\x6e\xbd\xbd\xd9\xae\x1d\x59\x81\x27\x77\xd7\xf7\xd0\x39\x77\xdb\x6f\xa0\x17\x5f\xf1\x17\x3f\xf0\x7e\xfd\x59\x38\xfa\x8c\xb3\x06\x3e\x5e\x7c\x35\xb9\x45\x2f\xa5\x13\xde\xf7\x77\xf0\xeb\x10\x5d\x2a\x74\xbe\x51\xba\x45\xce\x1b\xc0\x13\xd9\x56\xab\x86\xc8\x5f\x01\x9e\x08\x9b\xd2\x0b\xfc\xeb\xdf\x65\x8a\xa6\xae\xeb\x84\x77\x9d\xef\x7c\xd7\x91\x5e\x6d\xcd\x87\x9d\xa6\x9b\x5b\xa5\xdb\xcd\x15\xb5\xdb\x6d\x8b\x9c\x50\x4b\x5f\x6b\xad\x6d\x35\x69\xd5\x34\x8d\xd2\xa4\x7b\xa3\x4d\xaf\x61\xe8\x17\x09\x69\xdd\xbe\x1d\x46\x9a\x48\x72\x12\x19\xb7\xe9\x6f\x9d\x21\xfd\xe9\x72\x3f\xe3\x9a\x6b\xc9\xdf\xa8\x6b\xec\xaf\xae\xbb\xb5\x57\x8a\xbc\xdd\xc9\x5d\x3f\xb6\x76\x87\x3b\xc8\x9e\x6d\x8b\xbb\xe1\x43\x5d\x35\xea\x9b\x78\x2f\xc9\x64\x2e\xa6\xb4\x5a\xc9\x78\x04\xc0\x35\x94\x46\x9f\xc2\xbe\x9c\xca\xfc\xe7\x77\xde\x73\x9c\x4a\xa9\xa5\xf0\xb9\x14\x7c\x9c\x4a\xce\xb9\x24\xf0\x02\x5e\x73\x3e\xe7\x5c\x97\x9a\x79\x9f\x73\x3e\x96\x3d\x17\x69\x2b\x9c\x22\x90\x78\x00\x4a\xe2\x72\x38\x3d\x9e\x0e\x85\xb3\xa0\x72\x79\x9e\x67\xe8\x4a\x79\x9a\x8f\xd0\x8b\xaf\xf8\x8b\x1f\xf8\x7c\xf8\x25\x1c\x7d\xa9\xe4\x04\x9f\x2a\xbe\x91\xcb\xa2\x97\x32\x09\x9f\xe7\x67\xf8\x4d\x88\x2e\x15\xba\x3a\x84\x38\x22\xe7\x23\x50\x99\xf3\x18\xc3\xc0\x5c\xef\x81\xca\x8c\x4d\xf9\x05\xf5\xf5\xef\x32\x25\xf2\x34\x4d\xc2\xa7\xa9\x4e\x75\x9a\x38\xee\x4f\xe9\xfb\x39\xf2\xe3\x53\x88\xe3\xf1\x9e\xc7\xd3\x69\x44\x4e\xa8\xa5\x6f\xcc\x39\x8f\x91\x63\x18\x86\x21\x44\x8e\x73\x8a\x69\x8e\x30\xac\x8b\x84\x63\x1c\xdf\x0e\xe3\xc8\x2c\x39\x99\x53\x39\xce\x4f\x25\x71\xfc\x79\xb9\x5f\x2a\xc3\x83\xe4\x1f\xc2\x03\xf6\x0f\x0f\xd3\xa1\x86\xc0\x35\x9f\xe5\xae\x3f\xc6\x7c\xc6\x1d\x64\xcf\x71\xc4\xdd\xf0\xa1\xee\x87\xf0\x57\xbc\x97\x64\x32\x17\x53\xc6\x18\x64\x3c\x02\xe0\x1a\x21\xa2\x2f\x60\xdf\xf7\xf7\xff\xfe\xfe\xdf\xdf\xff\xff\xfb\xfe\xff\x05\x00\x00\xff\xff\xc6\x15\xf4\x64\x00\x08\x00\x00"), + }, + "/DISK2.rom": &vfsgen۰CompressedFileInfo{ + name: "DISK2.rom", + modTime: time.Date(2019, 6, 1, 15, 13, 24, 890519957, time.UTC), + uncompressedSize: 256, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5a\xa4\xb0\x80\x61\x11\x73\x9b\x4d\x17\x97\x8a\xcd\x07\x01\x56\x1b\xcf\xff\x9a\x75\x1b\x38\xbc\x2e\xfc\x9e\x31\x37\x8c\xf9\xc4\x0b\x81\xa7\x0a\x11\xff\x77\xed\x65\x60\xe4\xe2\xe2\xe2\x6a\xd5\x5e\xb5\xb7\xef\xc0\xde\x9e\x03\x7b\xbb\x0e\xec\xed\x3c\xb0\x20\x60\x6f\xc3\x81\x19\x9a\xcc\x5c\xac\xda\xab\xf6\x36\x1e\x58\x19\xa6\xb0\xe2\x4f\x87\xc0\xeb\x56\xb5\x56\xdb\x56\xc7\x95\x1c\xad\xea\x12\x1c\x7b\x7b\x0e\x08\xfc\xf6\xbc\x7a\xe1\x3b\x98\x71\x72\xd5\x85\xcf\xaf\x20\xac\x69\x1f\x38\x35\x26\xdc\xf7\x5c\xfb\x41\xf5\xc2\xcd\x05\xcc\xad\x0e\x60\x51\xad\x56\x1b\x30\xad\x6a\xd3\x71\xe1\x8d\xc6\x51\xdb\x0b\xfb\x96\x3a\x1c\x75\xbc\xb0\x63\xc3\xf6\x05\x61\x2d\x36\x7b\x40\x52\x91\xd7\x98\x96\xd8\x74\xcc\x64\x60\xbe\xf0\x0e\x59\x64\xa2\xda\x89\x0b\xef\x61\xdc\x0b\xed\x0b\x18\x16\x85\x9d\x32\xf8\xbd\x51\x2d\x8e\x81\x59\x0b\x84\x41\xf2\xef\x9e\xa9\x3f\xb3\x5d\x6a\x7b\x96\x81\x63\x99\xf6\x84\xdb\x3e\x8c\x1c\x0c\x20\x00\x08\x00\x00\xff\xff\xf6\x44\x71\xce\x00\x01\x00\x00"), + }, + "/dos33.dsk": &vfsgen۰CompressedFileInfo{ + name: "dos33.dsk", + modTime: time.Date(2019, 6, 1, 15, 13, 24, 890519957, time.UTC), + uncompressedSize: 143360, + + compressedContent: []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xfa\x0b\x54\x53\x57\x1e\x28\x0e\x9f\xbc\x20\xc4\x57\xb4\x8f\x49\xad\xe8\x16\x30\xc0\x29\xd6\xb4\x78\x24\x75\x1c\x05\x2b\x6d\xa0\x47\x05\xb5\xef\x96\x9e\x56\xd1\x60\xb5\xd5\xb6\x76\x6c\x67\x46\xb0\xcd\xce\x30\x94\x30\xa1\x95\x29\x88\xd1\x43\x9a\x4d\x73\x52\x82\x89\x4a\x2b\x6d\x69\x51\x81\x26\xa8\x70\x7c\xd0\xfa\x2e\x0a\x09\x01\x14\x0f\xbe\x40\x05\xf2\xad\x1d\x6c\x67\xee\xfd\xee\x5a\xdf\xb7\xee\xba\x6b\xdd\xb5\xfe\xff\xd9\xc0\x3e\x7b\xff\x5e\xfb\xf7\xd8\xfb\xb7\xcf\xde\x07\x11\x8a\xf5\x46\xf0\x2a\xf4\x48\x7a\x7a\x7a\x7a\x44\x3d\x5c\xc0\xbd\x02\xe7\xab\x9c\x23\xf2\xf5\x41\xb9\x69\x44\x5e\x1d\x94\x6b\x1e\xa8\x5b\x2c\x87\x7f\x6a\x09\xca\x9d\x23\x72\x18\xdb\x32\x22\xaf\x7c\x64\xdd\x7c\xa2\x6f\x44\xde\x37\x22\x07\xff\x18\x01\x9f\x8d\x80\x59\x77\x2b\x1f\x59\x37\x2c\x27\xc6\x8d\x89\x08\x97\x49\x44\xe3\xc7\x2a\xe4\x61\x52\xf1\x04\x02\xac\x8a\x75\xc9\x39\xc2\x6e\x7a\x75\x4e\x71\xb2\xb3\x91\xa2\x8f\xab\x9d\xaf\xce\x11\xe4\x7d\x75\x14\x2f\xe9\xfb\x81\xe2\x08\xd3\xab\x73\x68\xc3\x5c\xd3\xf7\x14\xb0\xab\x41\x4f\x14\xfd\xb7\x28\xf6\x3e\xf7\x42\xfe\x7e\x4f\xfd\x1f\xf8\x01\xf6\x21\xf7\xc2\x32\x1b\xe5\xa9\x8f\xe4\x6f\xd1\xdf\xa9\xad\xc1\xa2\x57\xe7\xf0\xb7\x88\xff\x73\x65\x4e\x44\x51\x77\x52\xd1\x40\x12\x27\x32\x0d\x26\x99\x7a\x92\x9c\xed\x49\xa6\x8b\x49\x9c\xd8\x74\x39\x89\x93\x9a\xae\x24\x55\x75\x25\xe5\x17\xf6\x63\xf4\x8d\xa4\x02\xec\x21\x07\x47\x58\x06\xa5\x96\xcd\x52\xf0\x59\x92\x35\xb8\xbd\xa8\x37\x89\xf6\x2c\x00\xff\x18\xa1\x25\x0f\x3b\xbb\x92\xb4\x57\xfa\x31\xbf\xb3\x2b\xc9\xd4\x9f\xd4\xd2\xff\x1f\x82\x38\xb1\xe9\x46\x12\xf8\x2c\x84\x1a\x99\xa3\xca\x89\x30\xf5\x27\x71\x0a\xd3\xc5\x24\x6d\xb7\xc8\x14\x9c\x63\xba\x82\x91\xcc\xa8\x52\x4e\x5f\x52\x55\x67\x12\xa8\x49\xaa\xba\x92\x94\xaf\x0c\x67\x27\xf4\xf4\xb4\x5c\x4e\x2a\xbc\x82\x25\xb6\x5c\x4c\xe2\x7f\x65\xe4\x9b\x01\xf1\x27\x97\x24\x4e\xc5\xc4\x69\x19\xe7\xf7\x14\x16\x46\x98\x84\x24\xe7\x6d\x2a\x2d\x68\xea\x4d\x62\x38\xc2\x5e\xbc\xd0\xc3\xdf\x65\x88\x87\x09\xc5\xc3\x81\x24\x62\x8e\x88\x11\x11\x04\x71\x37\x89\x20\x08\xdc\x08\xf5\x44\x57\x4f\x11\x56\x82\x15\xe7\xbb\xe7\xa7\xcf\x27\xe6\xe1\xbf\x32\xe2\x8f\x81\xf6\xe7\xcc\x57\xac\x44\x29\x1f\xb0\x3e\x5b\x47\xcc\x8b\x5f\x60\x21\xe6\x35\x2b\x6f\x32\x5a\x63\x6c\xd1\xe6\xb0\x3a\x53\x7d\x5d\x51\xbd\xe6\xaf\x4e\x62\x1e\x54\x73\x41\xcb\x3f\xeb\x23\x0b\xeb\x75\xfa\x1e\x56\xaa\xd3\x83\x5a\x6d\x3e\x3f\xc8\xb5\x81\xfd\x5a\xce\x81\x2b\x27\xd8\xaf\x2d\x65\x9f\xe3\x25\xb5\xc4\xbc\x17\x83\x7f\x74\xd4\xc5\xcf\xad\x8c\xb5\x98\xea\xeb\x0a\xeb\xf3\xf9\x5e\xa4\xee\x79\x91\x08\x01\xab\x37\x87\x8d\x42\x6b\x89\x3f\x7a\xf8\x9e\x51\x3a\xf0\x9d\x96\xbb\xf0\xbb\xa8\x5e\x5c\x05\xc1\x7e\x6d\x5d\x11\x26\x64\x54\x3a\xbd\xc5\x84\xc7\x66\x58\xc2\xfa\x5c\xb3\xe6\x6e\x2d\xf1\xc7\x2c\x62\x1e\x89\xff\x8a\xe7\x7b\x1a\xd4\x7c\x2f\xc3\x82\x7c\xe1\xf5\xba\xc2\x7a\xe5\xdd\xb4\x36\xfe\x46\x4f\xa8\xe5\x75\xf0\xd7\xd8\xe7\x46\x9b\x4e\xbe\x8b\x23\xf2\x0d\xea\xef\x71\xef\x45\x62\xae\x4d\x5d\x46\xcc\xe3\xfb\xfe\x47\xc0\x1f\x3d\x7c\x5f\xa8\x7f\x9a\x98\xcb\xdf\x37\xca\x78\x81\x57\xfc\x26\x4d\x78\x45\xcb\xb0\x43\x06\xb5\x87\x97\xfa\xd5\xc2\xf5\x51\x68\x1b\x2f\xfc\xc7\x68\x92\xd1\xe6\xbf\xf0\x68\x30\x36\xd4\x21\xa1\x3a\xf4\x9c\xa1\x2e\x4b\x20\x52\x63\xf3\x95\x5d\x76\xfe\x9b\xdf\x64\x57\xff\xce\x6b\x53\x31\xc6\x47\x20\x79\x74\xb3\x54\x58\xce\x11\x50\xed\xdc\x2c\x85\xb1\x5a\x1f\x29\x24\xba\xc2\xd3\x82\x7d\x9b\xa5\x66\x59\xce\x48\xcb\x66\x69\xa3\xda\x2c\x46\x6a\xef\x58\x97\xc8\xae\x05\x7d\x4f\xd4\x4e\x9c\x0b\x88\xb9\x28\x56\x05\xfa\x9f\xa8\x8d\xc4\x6d\xbf\x9a\x3f\x04\x88\xb9\x2a\xe7\x66\x69\xbc\x84\x94\x3d\xe2\xa8\xcb\xab\xaf\x7c\x04\xcf\x37\xeb\xc4\x66\x7e\xd8\xff\x14\x2f\xf6\x3f\xad\xed\x16\xf1\x02\x23\xd2\xc4\xc5\x80\xa9\x91\x53\x70\xd9\x90\xa0\x8e\x9a\x76\xaf\xfd\xaf\xcf\xb7\x97\x5b\x76\xee\xaa\xfc\xf2\xab\x2a\x67\xf5\xee\x3d\x7b\xf7\xd5\x7c\xfd\x4d\xed\xb7\xdf\x7d\x5f\xf7\xc3\x8f\x87\x8f\xb6\xb4\x9e\xf8\xf9\x97\xd3\x67\xce\x9e\x3b\x7f\xe1\x57\x9f\xbf\xab\xbb\xa7\xf7\xf2\x95\xbe\xab\xd7\xae\xdf\xb8\x79\x6b\xe0\xf6\x9d\xbb\x43\xc3\x23\xc1\xea\xd7\xc8\xf6\x29\x82\xcc\x4a\x14\xbd\x3a\x87\xe1\x82\xa6\xbb\x52\xd3\xd8\x7a\xd3\xf8\x7a\x7a\xd6\x5d\x67\x1d\x65\xf2\x53\xa6\x1e\xea\xdb\xa2\xf2\x44\x3a\x37\x11\x4f\xcd\xd2\x32\xb1\x64\x87\x54\x16\xc6\x56\x58\xbf\xb0\xa1\x70\xb9\x9d\x73\x44\x28\xc6\x8c\x1d\xe7\x72\x8f\x9f\xa0\x9c\x38\xe9\xbe\xfd\xf7\x3f\xf0\xe0\x1f\x54\x0f\x4d\xae\x3f\x70\xf0\x50\x43\x63\xd3\x4f\x1e\x6f\xf3\xc3\x47\xa6\x44\x4e\xe5\x8f\x1d\x9f\x76\xb2\x0d\x4c\x3f\x15\x15\x1d\x33\x43\x1d\x1b\xd7\x7e\xf1\x52\x47\x67\x3c\xf9\x48\x20\x61\xe6\xa3\xb3\x34\x8f\x3d\x2e\xf4\x27\xce\xa6\xe6\x24\x69\x07\x9f\x98\xfb\xc7\x79\x7f\x9a\xbf\xe0\xff\x60\x32\xf9\x6f\xf9\xbd\x68\xef\xa5\x89\xac\x50\x86\x38\x8f\x33\x04\x38\x34\x0f\x1c\x9a\x67\x31\xe1\x5e\x4f\x3e\x2f\x70\x6d\xa0\x6d\x1e\xe7\xc0\xd5\xbf\x40\xdb\x3c\x94\x02\x1a\xe6\xa1\x45\xb8\x5a\x80\xab\x94\xd4\x45\xa9\x0b\x74\xe9\xb2\xf9\xa3\x89\x41\x1f\xe1\x00\x27\xe7\x71\x17\x7e\xe7\xe9\x05\x6d\xf3\x54\xf7\x72\xc1\x3d\xb2\xf3\x85\xf5\xfa\x9e\x9e\x9e\x08\x47\x4f\x4f\x28\x39\x9c\x2f\xac\x67\xfe\x7f\x6a\x6a\xd0\xc1\x34\x56\x5c\x38\x18\xc6\x4a\x0b\x07\xa5\xac\xc8\xad\x73\xb0\x13\x8e\xe9\x84\x87\x0b\x74\x6e\x9d\x43\xaf\x2b\xd6\xd5\x15\xd5\xb3\xf2\xba\x42\x2c\x8e\xbf\x95\xcf\x0f\xea\x1d\xa3\xc3\x86\x80\x3a\xbd\x4e\x5f\x34\x28\xc3\x38\x49\x3e\xdf\x27\xaf\xfb\x47\x3d\x1b\xe6\xd6\x95\xcd\x21\x3c\xf5\x0a\xfe\x16\x2b\x71\xcf\x83\x4f\xb3\x62\xb7\x8e\x55\x1e\xd3\x09\x61\xc5\xba\x38\x96\x90\xaf\x35\xcb\xea\x0a\xea\x5d\x92\xba\x4f\xea\x57\x53\x71\x72\x7e\x0c\x1b\x0e\x88\xb9\xf9\xfc\x9d\xea\x41\x19\x2b\x75\xeb\xc0\x4b\xf3\xe3\xf8\x89\xb6\xa7\x95\xe3\xd8\x49\xf9\xa1\xd5\x39\xe0\x7f\x9a\xbf\xce\x8e\x75\xeb\x84\x97\xbc\x52\xe1\x85\xb5\x72\x97\x04\x10\x5a\x56\x53\xb8\x59\x56\x3d\x28\x03\x8b\x9e\x30\xc7\xb4\x6c\x96\x29\xaf\x3b\x37\x4b\x75\x1c\x03\x4a\xe6\xb7\x0c\x86\x09\x71\x9c\xd4\x34\x28\xe5\x08\xf0\xd2\x7c\x3d\x78\x69\x3e\xfd\xfd\x9f\x6c\x8f\x1e\xd9\x2c\x15\xa6\x60\xaa\x52\x50\x32\x5f\xdf\x32\x28\xe5\x7d\x42\xb3\x9e\x4b\x8e\xa3\x75\xf3\x85\x27\xe8\xdd\xf3\x59\x89\x5b\xa7\x43\xb3\xd8\xf1\xc5\x3a\xbd\x20\x6f\x9c\x25\x48\x39\xc0\x5f\x64\x65\x6e\x9d\xbd\x76\xff\x82\xc6\x99\xfc\xe7\x71\xe6\x29\xe0\x9c\x56\xee\x2a\x8a\xb3\x12\x46\x35\x38\xa8\xad\x1e\x94\xa9\x62\xb4\xec\xb8\x62\x5d\x5d\x7e\x3d\x03\x48\xad\x59\xe0\x94\xae\x3e\x1d\x2b\x72\xcf\x5b\xab\x37\xcb\x15\xe0\xcd\xf9\x4b\x36\x4b\x19\x48\x82\xa2\xf9\xb5\x9b\xa5\x31\x94\x46\x52\x3b\x28\x35\x6d\x96\x22\x32\x86\xd2\xc8\xca\x06\xa5\x4a\x49\xd9\x66\x29\xcd\x3e\x11\xda\x63\xed\x8c\x0e\x7b\x6c\xed\x6a\x0a\x14\xcd\xd7\x2b\xfe\x93\x84\xc1\xea\xc1\x14\xce\x01\xe7\xb3\xcf\x71\x04\x5c\x54\x16\xfc\x63\x3e\x7f\xa7\x8c\xc0\x35\x97\x01\x4a\xe6\x73\x71\x30\x15\x2d\x02\x2f\xcd\x07\xe3\x16\x70\x72\x57\x0c\xa7\x31\x6d\x96\x69\x5b\x36\xcb\x84\x87\xc0\xa2\x27\x5c\x37\xd1\x4c\xbe\x1f\x9c\xd3\xba\x2e\xfb\x17\xa1\x45\xde\x68\xf3\x09\x95\x59\x86\x55\xd7\x62\xdd\x39\x02\x2e\x60\xf3\x78\xb1\x2d\x15\x3c\x37\xcf\xf5\x26\x20\xb5\xae\xd5\xfe\x05\x68\x81\x57\x69\xbe\xcc\x4e\x30\x2c\x08\x09\x2b\xb3\x2f\xc8\x57\xde\xb1\xa5\x82\xbf\x2f\x18\xfd\xd5\xe9\x7b\xf2\xf9\x7e\x2c\x3d\x1a\xcd\x14\x1e\xe0\x94\x8d\xa9\x28\xb5\x5b\x04\x53\xbd\x32\xd7\x44\x2d\x83\x11\x32\x70\x4e\x6b\x9e\xd2\xb2\x59\x36\x4a\x37\x06\xcd\xf4\x4e\xe0\x43\xc0\x42\x0c\xec\xd5\x32\xb6\x99\xb5\xf6\x05\x9a\xf3\x5c\xb0\xcc\xbe\xa0\x69\x81\xb2\x19\x2d\xe2\x15\x28\xd5\xab\x34\xfb\x9a\x52\x9b\x52\x55\xff\xdf\x13\xf9\x7f\x7a\xd5\x02\x9f\x8d\x38\xb7\xd6\x3b\xb7\xd6\x73\x84\x89\x68\x07\xef\xcf\xa5\x17\x25\x99\x56\x92\xa6\x0d\xa4\x69\x23\xc9\x80\x97\x63\x0b\xbf\x21\x19\xb0\xe5\xd1\xea\xf2\xc4\xed\xe0\xc1\x68\x9c\x69\xb9\x08\x1a\x26\xd2\x86\x48\xee\x47\x98\x62\x25\x8c\xc9\x2c\x51\x91\x0c\xd5\xa5\xa9\x6a\xa8\x2e\x4d\x49\xde\x9a\xdc\xa8\xe6\x65\x1e\xfe\xaa\x20\x6d\x4a\xe1\x3b\x50\x4a\xfc\xaf\xf0\x49\xe3\xc2\x8a\x85\xba\xff\xa0\x59\xd8\xa8\xe6\x23\x3c\xfc\x55\xdb\x93\x7a\x3a\xf3\x61\xfd\xd6\x85\xb6\x14\x4f\xe1\xdf\xa6\x68\x4b\xaf\x6c\x99\x62\xfa\xeb\x14\xed\x95\x0f\xa7\x08\x16\x53\xee\x14\xe7\x87\x53\x4c\xe3\x22\xb9\x48\x53\x5a\x12\x67\x30\xe9\x92\xf0\x70\x75\xf1\x53\xec\x75\xe4\x14\x98\x42\x7f\xf6\xb0\xca\x9d\xbc\x3e\x77\x4a\x71\xb2\x87\x17\xfb\x53\x42\x15\x4a\x39\x9f\x30\xc5\xdc\x55\x7a\xfe\x91\x29\xe6\x8b\x05\xaa\x1c\xa9\xe3\x72\xdc\x14\xf3\x61\x2b\x51\xb4\x23\xb1\xee\xa5\x29\x30\xb9\xee\xe5\x29\x58\xed\x8a\x64\x50\x34\x68\x9b\x55\x2f\xe6\x27\xba\x93\x8f\x7e\x38\xc5\xac\x38\xfa\x97\x29\x2e\x59\x48\x9a\x16\xcd\xca\x4e\x86\xc9\x1c\x91\x9d\x02\x53\xaa\x77\x24\x9e\x7f\x75\x8a\xf9\x28\x4a\x3e\xff\xca\x14\x73\xd3\xa8\xc8\x17\xa7\x98\x77\x73\x0b\x60\x4a\xd5\xdf\xa6\xe4\x1b\x9e\xe4\x08\x98\x0c\x17\xda\xdd\xc9\xf8\xdd\xe9\x76\x4b\xde\x14\x21\xac\x29\xa5\xe9\x49\xbe\x8f\x5e\x31\x35\x86\x88\x7c\x2e\xf2\x85\xc8\x97\x22\x57\x45\xae\x8e\x5c\x17\xb9\x21\x72\x73\xe4\x5f\x23\xb7\x44\xe6\x45\x1e\x20\x87\xc9\xce\xa4\x40\x52\x5f\x92\x90\xf4\x9f\xf1\x01\x86\x48\x43\xdc\x30\xf9\x79\xe2\xab\x73\xda\x93\x9e\x9b\xf7\xeb\x3c\x42\x3b\x71\x6e\xce\xdc\x6d\x73\x89\x3f\xd9\x17\x78\x16\x04\x17\x44\x26\x13\x44\x34\x11\x3d\x34\x3c\x3c\x3c\x34\x3c\x34\x34\x34\x32\x32\x34\x32\x34\x34\x3c\x32\x14\x0c\x75\x83\x43\xc1\xa1\x91\x60\x30\x18\x1c\x1e\x09\xf5\x87\x86\x87\x46\x46\x46\x86\x86\x83\x98\x74\x94\x21\x54\x0f\x0f\x0d\x87\x1e\xc3\x98\x7b\x24\xd4\x08\x62\x19\x18\x81\xbb\xf7\xc4\x60\xee\xa1\x51\x92\x91\xd0\x50\xa1\xe6\xf0\xf0\x89\x29\x5b\xa7\xd6\x4d\xdd\x44\x7e\x46\x32\x24\xf1\xf0\x77\x54\xcf\xd4\x89\xd3\xa2\xa6\x3d\x3a\x2d\x73\x1a\x33\x6d\xc3\xb4\x25\x33\x26\xc5\xfc\x2b\x9a\x8f\xb9\x1a\xf3\x46\xd4\x86\xa8\xf7\xa2\xba\xa3\x26\xcf\x68\x9c\x31\x61\xc6\xb9\x19\xd6\xa8\xcf\xa3\xf2\xa2\xd6\xcf\x78\x3c\x6a\x5e\x54\x5c\xd4\xcc\xa8\x8c\xa8\x0f\x66\x58\x66\x68\xa2\x5f\x89\x36\x45\xff\x35\x6a\x4e\xc0\x17\xd3\xd1\x41\xb4\x4b\xda\x09\xe2\xdf\xed\xa1\x98\xa1\x98\xec\x53\x44\xfb\xbc\x93\xd7\x4e\x86\xcd\x08\x9b\xb1\x46\x69\x88\x9c\x37\xf6\xda\x58\x67\x77\x12\x5e\xf7\xa6\xb5\xa4\xb3\x27\xc9\xa4\x27\x9d\x44\x7b\x1a\xe0\x27\x9a\xbe\x26\xad\x8a\xba\xd7\x23\x2d\xcf\x46\x36\xf3\x03\xf4\xf7\x91\x5c\x32\x06\x8d\xad\x7b\xf3\x1e\x48\xeb\x9a\xe4\xfc\x9a\xe4\x71\x86\x92\x29\x94\x32\x8e\x06\x7b\x66\xa8\xe4\x20\x33\x8e\x23\x4c\x59\xa4\x69\x19\x19\xb7\xd6\x94\x49\x6a\x24\xeb\xb2\x22\xd7\xbd\x12\xa9\x50\x3e\x34\xca\xfe\xe7\x7b\xec\xd6\xc8\xba\xcf\x48\xcb\x26\xb2\x59\x39\xe0\x74\x93\xa6\xe7\x49\x70\x32\xd6\xb9\x97\x14\x22\x74\xc0\xa2\xd6\xb3\x44\x71\x32\x78\x39\xd6\xf9\x1a\xc9\x03\xeb\xac\xba\xcc\xa9\x16\x5e\x82\x29\x97\x4f\x35\x5d\x97\xa4\x21\xd3\x0d\x89\x73\xd9\x54\xd3\x35\x09\x17\xc6\xcb\x9c\x6f\x90\x42\x98\xe9\x35\x92\xce\x9b\xce\xd0\x3f\x46\xd2\x86\x48\x7a\x98\xa4\x6b\x92\x9c\x13\x22\xab\xc6\x47\x32\xce\x83\x64\xd5\x01\x92\xa1\x33\xe3\x7a\x7a\xe8\x17\xef\xd0\xd9\x41\xfa\x85\x20\xae\xb3\x83\xd9\x41\x70\x6c\xaa\x33\x93\x14\x1e\xd0\x39\x5f\x21\x8b\xe3\xf4\x1a\x09\xad\x56\x83\x9e\x48\x5b\x0c\xc7\x14\xc7\x61\x75\x24\xe0\x23\x35\x27\x31\x2d\x23\xc1\xb7\xd3\xc0\xb7\x53\x4d\xaf\x90\x45\x2f\x91\xf4\xde\x69\xeb\xb4\x04\xe6\x5d\x46\x2a\x1c\x75\x13\x23\x75\x75\xca\x48\x2c\x82\x19\xc5\x17\xbe\x4c\x7e\x1b\x08\x14\xbd\x48\x5a\x25\x75\xcb\xc9\x92\x39\xcd\xca\x41\xa6\xfa\x1b\x52\x90\xd0\x9b\xa7\x55\x67\x92\x82\xdc\xfb\xa3\xb0\xa9\x31\x51\x88\xb5\x8a\x8b\x96\x91\x47\xf7\x90\xfc\x43\xcd\x45\xcb\xc8\xe6\xa2\x57\xc9\xea\x57\x49\x0b\x21\x0e\x14\xbd\x4a\x7a\x4d\xfc\x26\xfa\xe8\x34\xaf\x89\xff\x9b\x95\x28\x5a\x46\xd2\xb6\x69\xa1\xa7\xd7\x24\x84\x63\xcd\xd6\xf0\x59\x3a\xad\x73\x2f\xc9\x4b\x40\x96\x5a\x6f\xbe\x5c\xfd\x12\x49\x3f\x80\xc9\x65\x9c\x0c\xeb\x3b\x5e\x4d\x97\x4d\x3b\xba\x87\x14\xa0\xb7\x40\xe8\xb7\x4a\x8b\x96\x91\xfc\x45\x8e\x30\x2d\x23\x85\x19\x1c\x61\xfa\x86\x04\x99\x71\xf4\xb9\x18\x27\x21\xc6\x44\x0a\xce\x64\x22\xc4\x56\xa2\xe8\x25\x92\x4b\xe6\xc3\x38\x25\x2f\xe6\xc0\xcc\x2c\x52\x98\x80\x0d\x6f\x9c\x66\x7a\x05\x5b\x55\xf4\x12\xe6\xaa\x7e\x91\xdc\xee\x7c\x85\xac\x7a\x99\xac\x7e\x89\xd4\x32\xeb\xe6\x10\x9c\x89\x6e\x9c\xc6\x06\x0b\x5f\x23\x3d\x85\x6f\x90\x7d\xaf\x91\x56\x42\x5e\x17\x12\xcc\x8b\xb0\x2d\xc0\x36\x3d\x3e\xf7\x45\x43\x9c\x47\x21\x88\xf5\x72\xb3\x10\x27\x80\x5a\x43\x1c\xff\xf3\xbd\xc1\x25\xb4\x6d\x9a\x53\x24\xf6\x9a\xf8\x30\xf0\x72\x2c\x5d\x32\x8d\x6e\x50\x8f\x7f\x8d\xac\x7a\x8d\x04\x59\x6a\xf3\x58\x4e\xfc\x44\x44\xbc\x20\xe3\x26\xd0\xc7\xd5\xf5\x61\xbc\xd8\x90\xc8\x01\x0c\x79\x1d\x94\x00\x39\xb0\x4d\x17\xa6\x2a\xcc\x32\x8d\x84\x26\xc0\x5a\xfa\x45\x00\x3e\x9b\x2e\x8c\x2b\xdb\x44\x7a\xea\xe7\x99\xaf\x83\xcf\xa6\xf3\x77\xe3\xf8\x09\x55\xaf\x91\x9c\x12\xf3\x8c\x65\xa7\xca\xf9\xc3\xce\xcf\x48\x2f\x2b\xdc\xe7\xdc\x44\x7a\x59\xfe\x19\x8c\xac\xc7\x48\xb1\x72\x01\x4d\x00\x76\x1e\xc7\x96\xbd\x47\xe6\xf3\x77\x18\xd3\x26\x92\x1b\x8b\x31\xb1\xa0\x76\xba\x6b\x9a\x9d\xff\x43\xfb\x44\xd7\x7d\x98\x5e\x8e\xa1\x61\xed\x72\x57\x8b\x79\x4c\x01\x2f\xe7\xc4\xf4\x71\x35\xdd\xa0\xe6\x08\x53\x36\x69\x7a\x8f\x34\xad\x26\x4d\xeb\x48\xd3\x7a\x12\x9c\x5b\xe0\x0c\xd9\xcf\xe3\xd0\x0c\x54\xbf\x46\x3a\xb3\xc9\x48\x45\xfc\xab\x8a\x78\xfe\xb3\xea\x95\xa4\xf0\xbe\x69\x25\x59\xf4\x2a\xc9\x9f\xb3\x2a\xce\x27\xc7\x0b\xb2\x66\x7e\x50\xf8\xba\x2e\x3d\x5e\xf3\xf4\xb8\x6c\xd2\x94\x4d\x36\x17\xad\x22\xf1\xe0\x56\xe7\x2a\x52\xa1\xb0\xa3\x54\x3e\x02\x2d\x3a\xfd\x6c\xbc\xb9\x10\xa5\x9e\x7e\x21\xde\x3c\x86\xff\x18\x2d\x3a\xfd\x7c\xbc\x59\xcc\xdf\x74\xae\x24\xf9\x6d\xa5\xe9\x76\x94\x5a\xb6\x86\x44\x8b\xca\x56\x93\x74\x00\xe8\xb8\xbc\x51\x49\xfa\xf8\xdc\x71\xef\x61\xe5\xf8\x6e\x61\x07\xc8\x9b\x4e\x7f\x3c\x0d\xbc\x1c\x0b\xaa\xa7\x3b\x5f\x23\x1d\x75\xd3\x22\x75\x75\x53\x23\x75\x4c\xf5\xab\x64\x1d\x21\xf6\x9a\x84\xb0\xd0\x24\xac\x62\xb0\x3f\xef\x78\x59\x61\x80\xe1\x08\xf6\xc1\xb2\x6f\x29\xec\x18\xbc\xfb\xc3\x54\x60\x9b\x2e\xf7\xda\x84\x79\x71\x74\xcb\x74\x6c\x62\x58\xe5\x22\x94\xaa\x62\xb4\xdd\x2e\xcd\x74\xaf\xc2\x15\x09\x46\xa6\x67\x2f\x72\x70\x44\x76\xaa\x1d\x8c\x4c\x07\x23\xd3\x0b\xb2\x17\xc1\x45\xa5\xd9\xa9\x30\xd5\xdc\xaa\x65\xc2\x16\xa9\x53\x99\x38\x1c\xc0\x46\xcc\xd2\xe7\x55\x98\xe5\xdd\xe1\x1a\xbf\x57\xe9\xba\x64\x95\x82\x91\xe9\xcd\xfc\x1d\xd9\x22\xb8\x88\x96\x46\xa1\x45\x74\xc9\x08\x5a\x44\x7f\x32\xe2\xcc\x22\xb1\x15\x59\x24\x93\xf0\x1e\x99\x21\x01\x9e\x69\xdc\x86\xc5\xef\x91\x33\xb3\x42\x30\x8e\x30\xed\x25\xd1\x22\x1d\x78\x30\x5a\x6f\x7a\x9e\xa4\x4f\xc6\x72\x32\xe0\x88\x02\xab\x62\x59\xa2\xb4\x38\x99\xe1\xc2\x79\x31\x27\x07\x8e\x28\xba\x27\x8a\x1b\xcb\xdf\x72\xca\x23\x4d\x75\x94\x33\x22\xd2\xf4\x03\xc5\x45\x98\x56\x92\xc0\x83\x51\xe0\x8b\x28\x50\xa8\xe6\xef\xd2\x1b\xe7\x70\x04\xdd\x16\xcd\x89\x4c\x2b\x49\xe7\x3a\x92\x57\x38\xd7\x93\xbc\x8c\x13\x99\xd6\xe1\x2e\x66\x5d\x4f\x9a\x7e\xa0\x40\x4f\x14\x4a\xe5\x25\xb4\x47\x0d\x53\xd0\x22\x98\x0c\x9e\x8c\x05\x4b\x62\xc1\xe4\x58\xe7\x4a\xd2\xf4\x1d\x45\xdb\xd5\xa1\xa9\x26\xcc\x00\xab\x62\x5d\x73\xc1\x50\x68\x8c\xdd\xb1\xbc\x2c\xa4\x6f\x48\x35\xb0\x24\x96\x13\x8f\xd2\x82\x4f\x63\x79\x19\xd8\x1e\x2b\x28\xc1\xee\x58\xe1\x16\x70\xc4\x0a\xfd\x98\xe7\xc1\x68\x86\x8b\x98\x99\x4d\x7a\x23\x04\x3c\xd9\x39\x29\x68\x8b\x76\xbe\x4b\x56\xbd\x43\x82\xf6\x68\xe7\x7a\xb2\x6a\x5d\xa8\x11\x82\xd0\xc1\x68\x60\x8f\xe2\x72\x67\x1e\xa4\xbc\x52\x41\x42\xf3\xea\x10\x39\xf8\x30\xc6\xe1\xcc\x26\xe3\x45\x7c\x58\xd1\x3b\x64\xe1\xbb\x24\xf8\x30\xa6\xfa\x1d\xb2\xea\x5d\x92\xde\x18\x03\x5e\x8d\x06\x99\x71\xeb\xde\x21\x9d\x5f\x93\x02\x40\x3f\x2b\x25\xf4\x11\x35\x27\x06\x6d\xd1\x5a\xb4\xdb\xb7\xc6\x8e\x5c\x3e\x3d\x68\x8f\x46\x7a\xdb\x1a\x3a\x18\xcd\x89\x42\x08\xda\xd7\x6c\x47\x8b\x7d\x87\x31\xe2\xb0\xad\x99\x0e\x46\x9b\x0e\x52\x3a\x60\x8f\xd2\xd3\x0d\xb1\x85\x07\xa8\xc2\x43\x94\xe9\x20\xc5\x49\x4d\xdf\x51\x9c\x68\xf4\xa6\xc9\x79\x90\x32\x1d\xc2\x86\x62\x5c\x03\xc5\x89\x69\xe3\x1c\x60\x57\xd3\x3d\x51\x34\xaf\x06\x0f\x86\x14\x8f\x9e\x79\x90\x12\x04\xd3\x41\x0a\xeb\x12\xc7\x89\x81\x3b\x06\x7c\x18\xa3\xca\x5e\xe3\x28\xcd\xd6\x37\xbe\xe7\xda\x00\x5d\x70\xad\x71\xb7\x31\xa7\x72\x8d\x4d\x0f\x36\xc6\x60\xc5\x99\x48\x4e\x34\x4a\xa7\x45\xf4\x15\x86\x74\xa0\xc5\x57\x5e\x27\xcd\xa9\xf6\x86\x67\xcc\xc9\xc2\x7c\xc3\x61\x63\x73\xd1\x21\xaa\xb0\x81\xa2\x15\x31\x4e\x45\xa4\xe9\x10\xe5\x1c\x13\x89\x15\x20\xb0\x86\x62\xd3\x01\x8a\x93\x60\x35\xc5\xf7\xd4\x7c\x9d\x34\x1d\xa4\xec\x4e\x86\x34\x1d\xa0\x18\xd0\x13\x45\x1f\x51\x1f\x3d\x48\x09\x93\xab\x5f\x23\x8b\xde\x20\xd3\x05\x09\xbd\x73\x86\x35\xb2\x6e\x13\x69\xf9\x0c\x6f\x63\xf4\x87\x33\x18\xac\xad\x04\xe7\xd6\xfb\x62\x80\x67\x1a\x56\xea\x85\x48\x94\x0e\x8f\xa0\x67\xe0\xd1\x75\xcf\x45\x82\x07\x7f\x03\x3f\x17\x09\xb2\x7f\x86\x89\xf0\x14\x7d\xfc\x17\x90\x3d\x3e\xd4\x3a\x39\x01\xa8\x67\x84\x92\x37\x5e\x9a\xea\x19\x9c\xc8\x94\x19\x6a\xae\x8a\x35\x87\x81\x2f\xa2\xe8\xd9\x33\xc0\x92\x58\x1c\xbe\x30\xe1\x3e\xab\xa4\xee\x2d\xd2\x52\x47\x35\x2b\x07\x38\x85\xe9\x3b\xac\x30\xc3\x25\xcf\xcc\x26\x05\x99\x73\x35\x9e\xa3\x23\xa6\xd5\xa4\x73\x5c\xa4\xe9\x7b\x8a\x1b\x83\x27\xfc\xe7\xd1\x5c\x18\x70\x44\x39\x7f\xa4\x4c\xab\x49\x26\xb4\x5d\x0b\x8f\x72\x84\xe9\x6b\x92\x9d\x0a\x3e\x07\xd6\x88\xba\x6f\x48\xcb\x7b\x64\x33\x3f\xc0\xd5\xe3\x71\x8f\xc5\x70\x00\xd3\xc8\x38\x11\x7d\x5c\x1d\xda\x31\x68\x43\xe4\x51\xa2\x5d\x18\x6f\xca\xab\xc7\xcf\x30\xd3\x56\xfc\x64\xc0\x17\x51\xce\xa5\xa4\x69\x1f\xe9\xcc\x20\x4d\x35\xa4\x73\x13\x69\xda\x4b\xf2\xe3\x7f\x57\xbb\xf7\x37\xb5\xa5\xc2\xc3\xce\xb7\x48\x5e\x5e\xfd\x36\x29\x4c\x6c\x79\x9b\x6c\x79\x8b\x04\x85\x6a\x41\x8b\x33\xa3\xe0\x63\x40\x96\xda\xb5\xda\xf9\x0a\x69\x3a\xf4\x1f\xf3\x05\xaf\x87\x2c\xb5\x6b\x09\x17\x86\x37\xb5\x42\x35\x3f\x01\x0c\x45\x71\x92\xa3\xcb\x48\xa1\x85\x93\xd1\xc7\xd5\xde\x76\xb3\x38\x3e\xd7\xf4\x0a\xde\x8c\x84\x88\xe6\x3a\x42\x1c\x91\x67\x21\xc4\xf4\xde\x69\x3a\x1c\x8d\xf1\x95\xef\x07\x84\x71\x95\x89\xed\xe7\x85\x70\xbd\x8a\x41\xa7\x35\xb7\xf5\x5a\x06\x0c\x45\xe1\x9d\x66\xef\x34\x60\x51\xe3\x95\x27\xe1\x2b\x46\x63\xff\xdb\x14\x3d\x44\x31\xce\x1a\x12\xa6\x38\xf7\x91\x30\x99\x01\x61\x8f\x98\x1f\x74\x36\x52\x5e\x99\x20\xa1\xb3\xe6\xd0\x9f\xce\xe9\x01\x39\x73\xad\x44\xd1\x21\x8a\xe1\xc6\xf0\x0a\x6e\x2c\x1f\xc6\x8d\xe7\xc5\xdc\x38\xd3\x2b\x24\xf0\x2f\xc0\x03\x4b\xd1\x29\xcd\x78\x2b\x01\xc4\xb1\xd5\xaf\x90\x40\x1c\x3b\x1a\x78\x90\xa5\xae\x7e\x85\xe4\x24\x2e\xc9\xba\x97\x22\xd7\x65\x45\xd6\x2d\x20\x1d\x45\x2b\xc9\xba\x8d\xf1\xba\x88\x3c\xd0\x38\xad\x7a\x25\x19\xd0\x2b\xaf\x30\xce\xd5\xa4\xe9\x47\xca\xa9\x27\x4d\xf5\x94\x73\x2d\x9e\x81\xce\xb0\xd0\x8c\x0d\xc7\x33\x16\x25\x9b\x96\x92\x28\xc5\x94\x41\x32\x6c\x64\xed\x26\xb2\x38\x39\x5f\x39\xc8\xb0\x53\xdd\xc9\x65\x1c\xe5\xa9\x57\xf3\xb7\x18\x96\x28\xcc\x24\x0b\x97\xe1\x94\x08\x53\xc1\xa7\xb1\xf4\xbb\xb1\x38\xa5\x44\x02\x47\x2c\xaf\x40\xc9\x70\x11\x4a\x81\xa9\xfc\x65\x36\xd2\x9d\x7c\x7a\x13\xc9\x77\xe4\x2b\x6f\xa9\x18\x2d\xe3\x24\x22\xab\x45\x91\xbc\x82\x9d\xe1\x4e\x16\x22\x1c\xf9\xee\x64\x63\x0a\x4c\x2e\x60\x58\xc2\x9d\xcc\xe0\xd7\x8e\xf1\xce\x7d\x64\x63\x32\x2f\x77\xd6\x90\x8d\x29\x82\xa8\x99\x59\x7c\x90\x12\x14\xf1\xb9\x42\x18\x08\xad\x5f\x46\xeb\x24\x22\x61\xb2\x53\x14\x09\x53\x9c\xcf\x93\xa6\x95\xa3\xe9\x8d\x9d\xaa\x45\xc9\xdd\x33\x8b\x93\x75\x28\xa5\x9b\xf0\x14\x27\x3b\x9a\xf5\x3a\x4f\x71\x72\xc1\xbf\x9b\x9e\x82\xe2\xe4\x96\x95\xa4\xf0\x07\x87\x5e\xdb\xad\xf6\x14\x27\xeb\x0a\x42\x94\x30\x45\x0f\x93\x69\x5f\xac\x8e\xc3\x3d\x4f\x71\x32\xf6\xee\x18\x3d\x7c\x0f\x6e\xd0\xc3\x77\xe1\xdb\x8c\x1e\x2e\x86\x87\xf5\x90\x86\xcd\x0c\x7a\xe2\xa8\x24\x52\x98\x64\x7a\x8e\x44\x5a\xd3\xb3\xa4\x53\x1c\x09\xb5\x4e\x49\x24\x7c\x02\x25\x1d\x95\x61\xc4\x0a\x12\xcd\x31\x2d\x27\x9d\xd2\x48\x38\xc7\x29\x8b\x84\x49\x4c\xda\x92\xb4\x93\xf4\xd2\x94\x86\xe5\x29\xcf\x35\x2e\x7b\xb6\xe5\x49\x5d\x4a\x5a\xcb\xa2\x54\x3a\x75\x45\x23\xbd\xf4\xc9\xc3\xcf\x2e\xc1\xf5\x93\xf4\xd2\xe5\x8d\xcb\x52\x53\x1a\x52\x5f\x48\x3d\xf4\xfc\xb2\xb4\x15\x8d\x19\x4b\x97\xa7\xad\x48\x5b\xda\xb2\x34\x23\xb5\x25\x25\x23\x23\x75\x49\xc3\xb2\xd4\x25\x29\x8b\x1b\x9f\x4c\x59\x91\x42\x2f\xfd\x69\xf1\xd2\x96\x25\x4b\x17\x2f\x6d\xc9\x58\xf6\x45\xda\x92\x2f\x16\xa7\xbc\xf0\x54\x1a\x9d\x7a\xe2\x29\x3e\x6d\xc9\xc9\x85\x78\xa0\x85\x78\xc4\x85\xcb\x9e\x6d\x79\x2e\x75\x59\xda\x53\xa7\x89\xe9\x1b\xd8\x0d\x15\x1b\xd8\x0d\xe0\xde\x0f\x43\x44\x85\x81\xf7\xa2\xc2\xa2\xa4\xd1\x9b\xa3\x36\x68\x36\x24\x6f\x48\xce\x4b\xce\x93\x13\x72\x42\x4a\x24\x6f\x48\x26\xa6\x7f\x00\x36\x82\x8d\x60\xc3\xcf\x0d\x27\x8e\x1c\x3f\x78\xe0\x90\xb7\x35\x19\x28\xe5\x52\xb1\xa8\x9e\x35\x13\xc4\x08\x21\x22\xc4\x84\x88\x08\x27\x44\x44\x30\x97\xf8\xf7\x5f\x70\x5c\xb8\x89\x4e\x59\xf2\xf4\xb3\x29\x4f\xa7\x82\x25\x4b\x57\x80\x94\xe7\x52\xd2\xe8\x94\x85\x74\xe3\xb2\x94\x25\x4f\xa7\x82\xd4\x65\xcb\x96\x1e\xc7\xf6\xa5\x82\x8c\x65\x4b\x57\xa4\x3e\xb9\x22\xb5\x21\x75\xc9\x22\xb0\xf4\x29\xb0\x28\x65\xc5\x01\x6c\x44\x88\xed\xa9\xa5\xcf\x2e\x69\x78\x6e\x29\xfd\xec\xe2\x54\xb0\x38\x6d\xf9\xe2\x94\x15\x4f\x7a\xd2\x66\x2d\x1d\xe5\x5f\x94\xb6\xfc\x19\xf0\xd4\xb3\xf4\x91\x10\x39\xbd\xf4\xc9\x67\x52\x1b\x96\xbf\xb8\x64\x45\xca\x0b\xa3\xf8\x25\x4b\xc1\xc2\x67\x9f\x7a\x2a\x75\xd9\xf2\x7f\x0f\x1f\x22\x5d\xf1\x62\xc6\xbf\xc5\x65\x2c\x5b\xfa\xf4\xb2\x94\xc5\x60\xc5\xd2\xa5\x80\x4e\x59\xf6\x74\x23\x1e\x77\x51\xda\xb2\xd4\x27\x57\x80\x27\x97\x2e\x5e\x9c\xb2\xa4\xc1\x44\x48\x1e\x7a\x28\x26\x71\x3e\xfd\xf2\xaa\xf5\x9b\x0d\xa5\x8e\xef\x7e\x3f\xfe\x49\xfe\x17\x77\x4d\xa2\xdf\x1a\x9e\xc6\x23\x47\x5a\xd9\xff\xbd\x22\x31\x84\x44\x1c\xe0\xf9\x23\x8d\x27\x5a\x9b\x4e\x06\x92\xbe\x4b\xfc\x6e\x36\x91\xbc\x25\x71\xfa\x23\xb2\x84\xe7\x13\xde\x4e\x20\x67\x7e\x3e\xb3\x2f\xe1\x66\xc2\x13\x09\x13\x67\x9a\x1e\xfd\xc3\xcc\x2d\x89\x5b\x12\xff\x91\x50\x92\x60\x4c\xf8\x34\x01\xb7\xeb\x12\xbc\x09\xdf\x26\x34\x25\x6c\x49\x6c\x27\x04\xb1\x55\x5c\xf4\x1a\xf9\x6d\x51\x79\x22\x58\xfb\xa8\xf3\x3b\xca\x3b\xce\x35\x46\xe1\xa8\x6b\x26\x75\x75\x5e\x52\xc7\xd0\x2b\x13\x41\xdc\x23\x74\x6e\x22\x38\xf7\x08\x27\x32\x75\x50\xd5\x3f\x50\xce\x3a\x8a\x97\xb5\x13\xbc\x28\x60\x0a\x50\x45\xdd\x14\xf0\x3e\x66\xce\x2a\xda\x91\x58\xfd\x1a\x59\x17\x11\x5f\xbd\x23\x31\xdd\x35\xce\x99\x49\x7a\xeb\x79\x09\xfd\x5a\x22\xfd\x6e\x22\x47\x58\x02\xb3\x39\x91\xa5\x6b\x76\xd1\x8e\x44\xb0\xe8\xf1\xea\x1d\x89\x96\x9f\x66\x9b\x8e\x53\xa6\x93\x94\xb3\x9f\xb2\x34\xcd\x36\x1d\xa3\x4c\x27\x28\xe7\x41\xca\xe2\x99\x0d\x92\x34\x60\xec\x2c\xf0\x73\x12\x98\x3b\xab\x7a\x47\x22\x17\x66\x6a\xa4\xea\x42\x24\x75\x21\xa6\x3a\xcf\x6c\xd3\x41\xca\x74\x8b\xaa\xeb\x9a\x6d\xea\xa3\xea\x02\xb3\x4d\x57\xa9\xa2\xd3\x14\x17\x34\xb5\x53\xa6\x8b\x94\xf3\x52\xa2\xe9\x0c\xa5\xa2\xb3\x66\x71\x84\xc3\x72\x8c\x0a\xb4\xcf\xe4\x07\x9d\x3f\x52\x69\x41\xd3\x6d\xca\x59\x4f\x99\x06\x29\xe7\x01\x4a\xa1\x50\x28\x1c\x45\x03\x14\x37\xd1\x74\x87\x62\x40\xe4\x2c\x30\x7b\x16\x38\xf4\x38\x27\x9e\xd9\x46\x09\xd3\xc1\xc0\x2c\x8e\x50\x81\x89\x1a\x6d\xcb\x29\x8a\x1f\xa8\x3e\x4d\x39\xfb\x28\x4b\xd7\x6c\xe7\x55\xca\x12\xc0\x1a\x62\x8f\xc4\x3d\xe2\xbc\x45\x69\x1e\x71\xd6\x51\x70\xa1\xf3\x07\x0a\x3e\x59\xbd\x23\x11\x4c\x79\x7c\x14\xeb\xfc\x9e\xf2\xca\x42\xae\xf4\x93\xba\x3a\x1f\x76\xe5\x9a\x44\xfa\x2f\x89\x98\x65\x70\x14\xd9\xa7\x70\xd4\x5d\x23\x75\x75\xfd\xa4\x8e\x01\x44\x22\xb0\x27\xe0\x77\x92\xdc\x44\xdc\xae\x79\x0c\xd8\x13\x74\xc0\xfa\x18\x4b\xe8\x8b\x17\xd2\xff\x4a\x00\x5f\x6b\x5c\x63\xdc\x0b\x75\xe0\xe5\xc7\xc0\xb6\xc7\xf4\x0c\xfd\x36\xa6\x73\x1e\xa2\xc0\x99\x84\x7b\x3c\x98\xd8\xbd\x10\x9c\x49\x00\x35\x8f\xd1\xcd\x09\x3a\xf0\xb5\x46\x5f\xbc\x90\x4b\x1e\xd7\x46\x99\xda\x28\xf0\xf2\x63\xf4\xb6\xc7\xb8\x3c\xd3\xce\xc4\xd0\x4b\xdf\x4e\x6c\x40\xf5\x8e\xc4\x3a\xcf\xec\xf8\xdc\x71\x3b\x13\x47\x3d\x3f\x2a\x6a\xd4\x3a\x3c\xe4\xd5\xbe\x4e\x8a\xbf\xd5\xe7\xa3\xe8\x87\x67\xfe\x4e\xaf\x94\xd0\x7f\x49\xc4\xcd\x50\x54\x2c\xfe\xd9\x5c\xd0\xd2\x34\xfb\xfb\x9f\x66\x17\x1e\xa7\x40\x92\x46\x05\xb2\x66\xb9\x48\x30\x76\x16\x3b\xb6\x70\x47\xa2\x7b\xa1\x66\x8c\x10\xa1\xf3\xb8\x17\xda\xf5\xe0\x1f\x33\xab\x76\x24\x7a\x3c\x7c\x97\xf3\x04\x55\x75\x92\x02\xff\x98\xa9\x75\x1d\x03\x77\x67\xd1\xb9\x89\x5a\x70\xfe\x71\x8e\xb0\xca\x2c\x02\xd5\xac\xbc\xc3\xe0\xf9\x86\x03\x86\x23\xf1\xa0\xc9\x92\x08\x66\x3d\x0a\x66\x3d\x6a\x1d\x53\xb7\x3b\x11\x5c\x19\x6e\x56\x0e\x18\x53\x9d\xb7\x92\xe0\x22\xb0\xf0\xd1\x51\x14\x8e\x96\xeb\xd5\xd1\xfb\xa1\xa6\xd9\xc2\x72\x4d\x3a\xcb\x62\x5d\xc5\xac\xa3\x14\x5c\x19\x0e\x99\xc9\x86\x2b\x14\x2e\x49\x3e\x7f\xa7\xf6\x4b\x2c\x85\x63\x31\xa2\x6b\x36\x5c\x54\x17\x98\x0d\x53\xc1\xc2\x47\x43\x90\x40\x20\xc0\x46\xd6\x35\xcd\xc6\xcd\x7c\xe5\x2d\x2c\x5e\xf3\xb8\xf9\x4b\xd7\x4e\x3a\x37\x91\x33\x81\x2b\xc3\x2d\x96\x44\x5e\x0e\xc6\x0e\x73\x0f\x98\x2c\x89\x0c\x2b\xe6\x08\x1d\x5a\x74\xda\x96\x68\x9e\x74\xdb\x96\x08\x17\xa1\xd4\x6e\x02\xa6\xea\x73\x08\x1d\xfd\xf4\xa3\xfa\x08\x17\xb8\x32\x9c\xaf\x3c\xcb\x00\xf9\x2c\x96\x28\x6c\xa4\xdc\x0b\xcb\x8e\x51\x9e\xfa\x99\xfc\x2d\xd5\x28\xac\xf6\x18\x55\xbc\x30\x04\x08\x59\x2d\x05\x2f\x68\x46\x3f\xe4\x1d\x48\xe4\x26\x9a\x7a\x13\x39\x91\xe9\x72\xa2\x55\xcb\x11\x96\xef\x12\x03\xfc\x1d\xeb\xd8\xf6\x42\xe1\x7e\x56\x52\xcb\x26\x5a\xae\x27\x62\x0d\xdb\x17\xf1\x97\xad\x3a\x3e\x00\xee\xce\xb2\x12\x05\x96\xef\x66\x07\xf8\x3b\x20\x55\xc3\x4d\xac\x12\x12\xf3\xf3\x4d\x97\x93\x4c\xdf\xcf\x2e\xac\x9b\xed\x29\xbc\x92\xc4\x89\xc1\x0b\x9a\xaa\xba\xd9\xf9\x1a\x19\x7f\xb9\x54\xf0\x83\x83\x49\x20\x3d\x89\xce\x4d\xb4\x12\x42\x98\x55\xcc\x8b\xad\xd2\xba\x9f\x28\xb8\xb0\xce\x43\xc1\x27\x99\x84\x36\x6a\x83\x88\x01\x9d\xb3\x38\x31\x58\xa6\xe1\x7e\x9c\x19\x9a\x49\x8c\xb3\x8d\xd2\x88\x18\xf0\xcc\x3d\x70\xee\x6f\x60\x2f\x65\x12\x92\x9c\xcd\x94\xa9\x3f\xa9\x3a\x14\x5f\x46\x8e\x57\xd5\x33\xb3\xc0\xd8\x59\x71\xae\x88\xea\x63\x54\xd5\x71\x8a\xae\x99\xc5\x8a\xdc\x0b\x05\xb9\x03\x4f\x09\xba\x66\x16\x4e\x3a\x52\x41\xac\x65\xc0\xa2\xc7\x59\x71\xf1\x42\x5d\xbe\xb3\x9f\x2a\x5e\xa8\x03\x73\x71\x12\x60\x65\xce\x0b\xd8\x3d\xce\x5f\xa9\xe2\x85\x7a\x87\xde\xce\x89\x79\x31\x27\x2a\x3a\x41\x15\x9e\xa4\xc0\x32\x0d\x2b\x73\x2f\x34\x9d\xa3\x54\xeb\xcf\x50\xa6\x0b\x94\xc7\xbd\xd0\x74\x9e\x5a\x7f\x96\x32\xfd\x4a\xa9\x42\x8a\x8b\xe8\x65\x9a\xaa\xc3\x94\xf3\x08\x55\x28\x24\x61\xc5\x7e\xa6\xaa\x7e\xa1\x18\x4e\xc4\x8b\x39\x71\xd5\x21\xb2\x50\x48\xaa\x6a\x20\x0b\xfb\x93\xaa\xef\x50\x2c\x41\x2f\xd3\xc8\x41\xaa\x26\xce\x25\xaf\xaa\x4b\xac\xfe\x3e\x91\x57\x54\x7f\x3f\x9b\x17\x6b\x99\xaa\xba\xd9\x45\x9f\x27\x16\x96\x26\x72\x22\xb0\x4c\xa3\x62\x40\xaa\xa6\xfa\xf3\xc4\xaa\xd2\x44\x4e\x4c\x2f\xd3\x38\x1b\x49\x6c\x79\x13\x69\xea\x4f\x62\x8a\x42\xdf\x6a\x4d\x37\x92\xbc\x62\x3e\x6c\x74\xed\xfd\xf6\x5d\xd6\x39\x40\x99\xba\x93\x9c\x83\x94\xa9\x27\xc9\x79\x89\x32\x5d\x4b\x72\x76\x50\xa6\xeb\x49\x9c\xc8\x14\x48\xaa\x3a\x40\x3a\x0f\x92\xa0\x26\xc9\x79\x2b\xc9\xf4\x23\x4e\x67\xbd\x49\x2e\x11\xe3\xbc\x99\xc4\x86\x7b\x81\x20\x67\xa5\x5e\xa5\x20\x66\xe5\xa5\x34\x4c\x74\x76\x52\x47\xdb\x29\x5e\xee\xf4\x51\x47\x2f\x52\xc2\x6a\x10\x39\x0b\x37\xcf\x53\xe6\x29\xbc\x1c\x23\xcf\x51\xe6\x49\x18\xf2\x2b\x65\x56\x8e\x42\x2e\x50\xe6\x30\x90\x35\xcb\xfc\x0b\xa3\x75\x76\x52\x57\xce\x51\x8a\x9c\xb1\x76\x30\x76\x96\x7b\x21\x3f\xe1\xdf\x21\x98\xfd\x18\x0d\x1e\x33\xfd\x1c\x72\xe4\x2f\x14\x38\x37\xcb\xd9\x49\x99\xda\x29\xa7\x0f\x67\x56\xa0\x9c\x55\xe5\xa7\x54\x4c\xa1\x05\x67\xf1\x2a\x4b\xa2\xa7\x18\x53\x8d\xc6\xcb\xf4\x33\xc6\x83\x9f\x93\xb8\xfa\x51\xa3\x99\xea\x1e\xaa\xa8\x8e\xaa\xee\xa5\x8a\x7e\xa0\xaa\x2f\x53\x55\x57\xa8\xa2\x1f\xa9\xc2\x7a\x2a\xc0\x8b\x3c\x47\xba\x29\x7e\xe2\xe5\x00\xc5\x8f\xb5\x12\x2c\xd1\xd7\x43\xf1\x92\xbe\x5e\xaa\xe8\x32\x55\x78\x85\x62\xfa\xfc\x14\x2f\xc7\x89\x47\xd2\xe7\xa3\x98\xaa\x43\x54\x75\x03\x65\x58\x68\x7c\xb2\xef\x10\x06\x35\x50\x4c\xd5\x01\x8a\x97\x57\x1f\xa4\x84\xf0\x96\x83\x54\xcb\x01\x8a\xc1\x09\x6b\x60\x96\xf3\x10\xce\xc4\x0d\x14\x7c\x92\x13\x99\x2c\x89\x1c\x61\x3a\x45\xa9\xfa\x4e\x51\x38\x33\x64\xfe\x9e\x19\xa6\x69\xa2\x58\x22\x10\x08\xb8\x17\x9e\x6f\x9a\xcd\x2b\x3c\xf5\x53\xf9\xeb\xd5\x3b\x12\x55\x0c\x5e\xe5\x67\x5d\xad\x55\x96\x44\xfe\x00\xae\xae\xde\x23\xb3\x34\xcd\xc6\x44\x37\xab\x77\x24\x6a\x19\x95\x73\x47\x62\x4e\xb4\xa3\xfd\x26\xc3\x11\x98\xe8\x73\xfa\xcf\x89\xce\x7e\x4a\x98\xde\x22\x50\x9a\x3f\xa8\xac\xd2\xf9\xfd\x54\x33\x7f\xc7\x2c\xf4\xf5\x61\x65\xaf\x52\x4e\x81\x62\x38\xc2\xd4\x4f\x8d\xe6\xdc\x81\x59\x2a\x67\x6f\xe2\xfa\xcb\x89\x42\xc4\xd1\xab\x89\xe6\xfb\xb9\x20\xaf\x70\xee\x4c\xe4\xf1\x1c\xd8\x99\x68\xba\x9c\xa8\xca\xc1\x6b\xde\xd4\x4f\xd9\x15\x0a\xbb\x55\xaa\xaa\xbd\x95\x68\xe9\xa7\x84\x30\x2d\x47\x94\xdd\x4a\xcc\x6f\xe6\xfb\xcc\x75\xe0\xee\x2c\xa7\x90\x68\x12\x28\xfe\x1f\xa3\xc3\xf3\x22\x46\x07\x06\x66\x55\x09\x94\x5e\x15\xca\xa3\xa6\x7e\x8a\xbe\x3b\xcb\x3a\xb4\xe5\x16\x4e\x06\x9e\x23\x42\x22\x7f\x4d\xa1\xb0\x0b\x13\xac\xd2\xba\x7e\xea\xa1\x5b\x89\xa3\xb2\xae\x33\xbf\x7f\x7b\x75\xfe\x40\x99\x3a\x29\x53\x2f\xd6\xd3\x47\xb1\x4a\x87\xd3\x4f\xa5\xbb\x24\x05\xe6\xf1\x2a\xa7\x8f\x5a\x1f\xa0\x4c\x3e\xaa\x60\x7d\x37\xb5\xf6\x2d\x1f\xf5\x56\x27\xf5\x96\x9f\xca\xe7\xcf\xaa\xf0\x59\xee\x32\xb5\xde\x8f\x85\xe0\xbd\xf5\x0a\xb5\xbe\x13\xcb\x31\x87\x42\x47\x10\x9c\x88\x8f\xe2\xc4\xfc\x54\x4e\xc2\x4f\xe6\xa4\xfc\x83\x9c\x8c\x9f\xc4\x85\xf1\xe3\xe9\x2b\x0b\x7a\x38\x05\x1f\xe6\x6c\xa4\x54\x66\x91\x56\x6e\x6a\xa4\x38\x02\xea\xc0\x96\x47\xe3\xaa\xcb\x13\xb7\xff\xe7\xe7\x8e\x60\x50\xa4\x58\x75\xd2\x7b\xe0\xe0\x89\xe3\x07\x0e\xb2\x8d\x47\xdb\x8e\xb4\xfe\xcc\x1e\x3e\xe1\x6d\x90\x4e\x9c\x20\x25\x88\x91\xdf\xee\xbd\x83\xa3\x97\xde\xc1\x91\xdf\xef\xbd\x87\x82\xc1\x91\xa1\xa1\x0f\x43\x97\xe4\x43\x23\x43\x13\x45\x04\x11\xad\x24\x44\xc1\xe1\x10\x60\x38\x74\x41\x3e\x12\x0c\xd5\xa3\xfc\xc1\xdf\x84\xfc\xce\x3f\x3c\x3c\x34\x12\x62\x1e\x1a\x1a\x1a\xc1\x72\x47\xee\xdd\xc5\x8f\xde\xaf\x07\x47\x86\x83\xa3\x37\xf7\xa1\x6b\xf8\x10\xef\xc8\xef\x02\x42\x78\x2c\x65\x74\x3c\x2c\x20\x24\xf1\xde\x9d\xfd\x70\x30\x24\x61\x24\x74\x8f\x1f\x0c\x75\x43\xf7\xff\xf7\xae\xfe\x87\x86\x30\x2e\x38\x14\xfa\x16\xf0\xbb\x06\x58\x6c\x48\x40\x70\x48\xfc\x1f\xd7\xff\xf7\xb4\x1e\xb9\xa7\x75\x30\x38\x12\x1c\xbe\xc7\x13\x92\x1f\x32\x31\xf8\x3b\x7d\x70\x68\x78\x38\xf4\x61\x61\x38\xe4\x80\xe0\x50\x70\x64\xd4\x69\xc3\x21\x9e\x60\xc8\x94\xdf\x18\x30\x3b\x76\xe4\x28\x2c\x64\xff\xd0\xf0\x08\xd6\x25\xf8\xbb\xe9\x23\xa1\x6f\x0e\xa3\x5a\x04\x43\x16\xff\xe6\x89\x91\xd1\xef\x14\xd8\xfa\x7b\xac\xc1\x60\x48\x87\x51\x85\x46\x42\x1f\x26\x30\xd7\x30\x76\x65\xf0\x77\x07\xdc\x73\xe6\x3d\x1e\x6c\xc6\xf0\xa8\x16\xbf\x3b\x7f\x78\xd4\x89\x78\xf8\xd0\x57\x91\x7b\x0a\xfe\x1e\xf8\x90\xa0\x91\xa1\x7b\x3c\xc1\xdf\xbc\x34\x32\x6a\x31\x56\x7b\x68\x78\xe4\xff\xef\x4f\xda\xff\x2d\xff\x2d\xff\x2d\xff\x2d\xff\x2d\xff\x2d\xff\x2d\xff\x2d\xff\x2d\xff\x2d\xff\x0f\x28\x65\x41\xa2\xa9\x8c\x0f\xe3\x1e\xf5\x94\x05\x09\x83\xd3\xf6\x71\x41\x5a\x30\x3e\xcf\x51\x1f\xc3\x3b\x6c\xce\xda\x20\x91\xef\xd5\x08\x83\xde\x47\x05\x91\x87\x7b\xa4\x72\xbb\xf0\xa8\x52\xce\x11\x5a\xdf\x76\x07\x37\xb3\x4c\x24\xe2\x52\xcb\x08\x51\x81\x75\x96\x36\xd0\xad\x70\xdd\xcd\x99\x5b\x26\x11\x15\x94\x89\x45\x1c\x51\x26\x15\x09\xf2\xb2\x20\xc1\x11\x65\x84\x88\x23\x58\x11\x93\x87\x07\xbb\xa3\x98\x46\x10\xa5\xff\xca\x0b\x0a\x75\xf5\x84\xc8\xc8\x06\x83\xa7\x04\x82\x90\x04\x82\xc1\xe0\x0e\x82\x20\x14\xc1\x60\x30\x08\x56\xf6\x72\xab\xd8\x3e\x70\xbb\x47\xd8\x80\x10\x2f\xa1\x33\x02\xd6\x02\x96\x00\x8f\xf4\x22\x87\x72\x02\x88\xbe\xcc\xe1\xde\x9e\x5e\x5e\x52\x6a\x1b\x07\x9e\xed\x2d\xd5\x81\x94\xee\x10\x2c\xb7\x1b\x44\x5c\xd5\xa7\x9b\x15\xc8\x22\x84\x21\x6b\x5a\x10\x5a\x99\xad\x5a\xc7\x1f\xe3\xc3\x37\xce\x7e\x61\xfe\x73\xef\x3d\xb8\x65\xef\xc3\x7f\x9e\xd5\xd7\x01\x3f\x8c\x34\x4c\x21\xff\xba\xf2\xc5\x17\x14\x5b\x36\x29\x54\x2c\xb1\x71\xbf\xb6\x5b\x03\xb7\xd3\x7f\xbf\x5c\x3e\xff\xfb\x69\xc3\x3b\xdf\x7a\x33\x16\x57\x71\x04\xf7\x02\x7b\x02\x3c\x76\x05\xbd\x5f\xb9\x09\xee\x34\xee\xb2\x9a\xb5\x80\xed\x05\xb3\xaf\xd0\x73\xcf\xb2\x22\x6e\x66\x7e\x8c\x55\x29\xc5\x7e\x83\x56\x83\xd3\xc3\x69\x2a\x2d\xbc\x84\x7e\xbe\x8f\x23\xda\xf3\x04\xb1\x2b\x82\xbb\x9f\xbd\x02\x72\xbb\xb9\x01\x58\xc6\x4d\x60\xaf\x80\x3d\xbd\xc2\x54\xe5\x24\x4e\x31\xda\x14\x2b\xc7\x83\x27\x7a\x9a\xca\xf8\x3e\xf0\x6c\x8f\xbf\x8c\x3f\x07\xd8\x2e\x70\xad\xd7\x2a\x42\x65\xaa\x1c\x85\x26\xc2\x3b\xc6\x15\x96\x13\x74\x70\x62\x6d\xb7\x18\x6e\x37\x96\x15\x08\x62\xe5\x7d\x36\xe7\x68\xa0\x0a\x84\x30\x4e\x33\x1a\x31\x96\xb0\xe6\xa1\x0a\xd5\x07\xeb\xfa\x60\x05\x62\x3f\x78\xb3\x0f\xb2\x68\xd7\x07\x6b\xfb\xe0\x2e\xb4\xf3\x83\x9c\x3e\xb8\x33\xe0\x92\x2a\x2f\x68\xc4\x9a\x33\x05\x66\x69\x5a\x30\x47\x91\x33\xcb\xe3\xf1\x78\x0c\x1f\xdb\x9c\x1e\x47\x7c\x6e\x84\x83\x0b\x42\x1b\xb0\x05\x0a\xac\x16\xef\x6d\x65\x18\x10\x02\x06\x1b\x63\x47\xd6\xf8\xbc\xa7\x76\xca\x76\xc2\x9d\x20\xbc\xdb\x60\x63\x90\xc5\xcb\xba\x00\xb8\xd6\x6b\xa8\x42\x56\x83\x35\x2d\x8f\xe4\x58\x68\x41\x15\x70\x1c\x1d\x1f\x80\x3b\xe1\x2e\xc8\xc2\x0a\x3b\xc3\x12\x56\xc5\xb6\xb2\x66\xe5\x5d\xf3\x04\xef\x4c\x5e\x6a\xfc\x42\x90\x7a\x1f\xe1\x65\xc0\x4d\x98\x5f\xf6\x3e\x2a\x3c\xea\x4d\xe5\x35\xb8\xf3\x07\xaf\x57\x18\xef\x9d\x29\x28\xbc\x1e\x41\xee\x7d\x44\x90\xf2\xe1\xab\x77\x60\xc4\x2b\x31\x3b\x94\xe3\x43\x33\x8c\x66\x2f\xaf\x2e\x8f\x29\xcf\x38\x84\xb6\x6b\x7d\x65\x70\xbb\x30\x49\x19\x81\x3d\xb5\x9d\xbf\x2d\x84\x63\xcf\x6d\xe7\x6f\xa3\x2f\x34\x22\x86\xe6\xfb\x74\x31\xe5\x4a\xb1\xbf\x0c\x3c\xd1\xa3\xd7\x76\x6b\x40\xdb\x65\xfa\xf5\xcb\x3a\xb0\xb2\x57\x0f\x3e\xeb\x45\x8e\x54\x2b\xfc\xaa\xd2\x42\x1f\xe8\x42\xdb\xbd\x0a\x73\x04\xb7\x2a\x66\x87\x66\x22\xdd\x16\x50\x28\x54\xd9\xdb\x5f\x63\xa5\xee\x2c\x58\x91\xef\xce\x82\x2c\xae\x76\xe1\xca\x1a\x91\x07\x77\xe2\x86\xc5\x50\xc5\x58\x4b\x13\xac\x9f\xb1\x84\x20\xad\x84\x36\x23\x78\xa7\xd7\x98\x65\x78\x8d\x95\xa2\x8a\xe2\xac\x7c\xc4\xe2\x6a\x17\xae\xac\x11\xb9\x33\x76\xe2\x86\xa5\x38\xcb\x50\xc5\x20\x07\xb4\x5a\x65\x35\xb6\x92\x1d\xcd\xfc\x6d\x63\x15\x03\xde\xe9\xb5\x86\xd5\xec\x28\xb1\x8d\x76\x91\x45\xb8\x1b\x56\x65\x1e\x00\x4d\x01\xfe\x1a\xfd\xcf\x00\xb2\x08\x11\xc8\x4a\x72\x41\x97\x98\x13\x31\xe0\xa3\x5e\xb8\x93\x23\xe0\x2e\x6b\x3e\xda\x99\x16\x24\x39\x02\x56\x40\xd6\x68\x81\x55\xd0\x4a\xc7\x07\x9e\xb2\x32\x90\x31\xbc\xce\x12\x6e\xc6\xe3\x10\x1a\xdc\x4c\xaa\x55\x73\xb0\xd3\xc2\x4f\x77\x33\x11\x79\x8d\x3b\xf9\x87\x3c\x6e\xa6\x71\x17\x3f\x09\x3f\x58\x7e\x8c\x87\xcb\x6d\xac\x72\x33\xbe\x0a\x21\x0e\x59\xcd\xe2\xb4\x20\x9d\xdf\x8b\x2c\x42\xba\xb6\x9b\x8d\xb1\x2a\xb1\x73\x90\x23\x22\x0f\x56\x62\x7b\x11\xb2\x30\x08\x09\xd3\x54\xd9\x16\xb3\x54\x13\xa9\x4a\x50\xde\x9f\x93\x07\xf1\xb4\x5e\x16\x40\x5f\x41\x2b\x83\x97\x95\x46\xa6\xd7\xd3\x4b\x02\x74\x5b\x00\xac\xec\x75\x08\x4a\x55\x8e\xd8\x75\xcd\x4a\x18\xbf\x02\x2d\x5d\x7e\x8b\xd0\xc5\x18\x00\x41\x10\x78\x1d\x67\xb0\x3d\x21\xf8\xed\x1e\x3a\xa7\x07\x74\x74\x0b\xef\x83\x77\x7a\x71\x74\x2d\xd0\x02\xc6\xf7\xf8\x2d\xc2\xb7\xd6\x21\x4e\x64\xab\x6c\xd8\xc9\x2b\x6d\x5f\x36\xec\xe2\x15\x36\x7b\x03\xcb\x4b\x6d\x5c\x43\x85\x9c\x34\x47\x04\x4a\xb2\x85\xc7\x95\xb3\x39\x51\x9c\x6b\x7c\x18\xa7\xb6\xab\xbf\x54\x57\xba\xfc\x9a\x16\xe5\x25\x3b\xe2\x7c\x15\x90\x43\x76\x1f\x0b\xed\xe8\x4b\xdf\x2e\xf8\x25\xaa\xf4\xed\x84\x95\xa5\x74\x65\x0f\x97\xcc\xb7\x28\x42\x05\x56\xc5\xd1\xfe\x1e\x2b\xa4\x27\x9d\x44\x6f\xc0\x9d\x68\x25\xdc\x85\x56\x41\x16\x65\xc3\x0a\xfa\xd1\x00\xcc\x32\xdc\xff\xa0\xc8\x2c\xbe\x25\x7a\x1f\xff\x88\xdf\x97\xbc\x2f\x5d\xeb\xe1\x2f\xab\x98\xad\x38\x5d\x49\x72\xb3\x9e\x3b\xfc\x41\xde\x7d\xe5\x63\x56\xe5\xbd\xaf\xfd\xec\xc1\x8f\xb4\x8e\x3f\x82\x3c\x4a\x7a\x7d\xf6\x56\x5c\xe5\xe1\x9c\x96\xf7\xd8\x3b\x7f\x18\x04\x1f\xe1\xf5\x2c\xa1\xcb\x2e\x22\x4b\x77\xae\x8e\xcb\x83\x16\x6e\x26\xdb\x0d\x7e\xe8\xe2\x1e\x67\xbb\xc1\xea\x1e\xee\x3e\xb6\x1b\x7c\xd9\xc5\xa9\xd8\x6e\xf0\xca\x55\x2e\x29\x84\xd3\x83\xb6\xcb\xdc\x3c\xb6\x1b\x74\x74\xf3\x12\xfa\x52\x37\x18\xdf\xc3\x11\xf0\x0d\xb8\x12\xae\x82\xd9\xa8\x0a\xb8\xba\x51\x05\xae\x58\x5c\xed\xc2\xd5\x4e\x50\xd3\x4d\xfb\x7b\x78\x09\x7d\x26\x90\x1e\x91\x67\x37\x3f\xa4\x42\xd9\xd9\x1c\xcc\x46\xab\xb2\xed\x70\x15\x5a\x99\xfd\x25\x5c\x89\xde\xc8\xae\x84\x6f\xac\x7e\x63\xf5\xca\xd5\xab\x56\x67\xaf\xae\x2a\x4d\xe7\x7f\x66\x60\x68\xd2\xba\xb3\x20\x87\xc3\x6c\xc7\xd5\x97\xb8\x72\x28\x9f\x67\x2d\xed\x48\x10\xb3\x48\x9b\x16\xcc\xfe\x14\x56\xd5\x4a\x89\x9b\x52\x58\x51\x2b\x21\x6e\x4a\x20\x5b\x2b\x26\x6e\x8a\xe1\xae\x5a\x11\x71\x53\x04\x77\xba\x24\x60\x67\x80\x25\x4a\x55\x95\x3b\xf9\xf4\xca\x5d\xc6\x9d\x95\xac\x71\x57\x65\x85\x91\xad\xac\x32\x56\x18\xaa\x72\xe4\x5e\xc0\x77\x72\x04\xb4\x40\x2b\x83\x65\xa1\x8a\x6c\x0e\x67\xa5\x6c\x3b\x4e\x4a\xd9\x5f\xe2\x9c\x94\x5d\x09\x77\xd2\xa6\x40\x8e\x28\xac\x4a\x5d\xa1\x66\xd5\xbb\xd4\x3b\x95\xd7\xb4\x3e\x8b\xeb\xa7\xb4\x60\x8e\x08\x5a\xcc\xe3\xfd\x16\x61\xe1\xea\x9d\xab\x77\xad\x66\x57\x57\xac\xae\x62\x46\x33\x39\x5e\x08\x70\x27\xda\x95\x16\x84\xbb\x10\x9b\x16\x84\x2c\xaa\x48\x0b\xc2\x0a\x54\x95\x16\x84\x55\xfe\x2a\x7e\xbc\xbf\x82\x57\xf8\x59\x3e\xcc\xbf\x8b\x17\xfb\x77\x32\xd6\x54\x7a\xd2\x49\xeb\xeb\xfb\xa4\x86\xaa\x7d\x92\x6d\xd2\x7d\xe2\x6d\x92\x7d\xa2\x6d\x62\x9b\x6d\x9b\x28\x47\xae\x09\x08\xfe\x6e\xb9\x1d\x55\xb9\xe4\x17\x2b\x59\x5e\xa8\xac\xa0\xbf\x21\xc0\x39\x3f\x2f\xa1\x97\x04\x2a\xf7\xdb\x6a\x8d\x4e\x43\x75\x65\x96\x71\xbf\x2a\x3b\x0b\x32\x95\xaf\x19\x6b\xcd\xa2\x80\x31\xb4\xe4\x74\x1c\x51\xcc\x80\x6f\x08\x90\x7e\x59\xcf\x12\xc5\x4c\xa5\xd3\x56\x6d\xdc\x6f\xa8\x65\xc0\x9a\xf3\x60\x59\x17\xf8\xe1\x02\x3d\xe8\x47\x16\x6f\xb1\x6b\x3b\xb8\xd6\x8b\x58\x5b\x85\x21\x03\x66\x32\x28\x43\x87\x32\x75\x60\x59\x17\x4b\xb8\x33\xec\x7a\x98\xa9\x87\x19\xb4\xa8\x03\x3c\xd5\x55\xc0\x12\xc5\x19\x0c\x78\xaa\xcb\x08\xad\x04\xf8\x86\x10\x24\x80\xee\x32\x1a\x31\x5d\xaa\x71\x06\x14\x06\x19\xbc\x1f\xd2\x3f\x74\x81\x8e\xee\x51\x5f\xa4\x3a\xe0\x57\x08\x27\x34\x20\x04\xcc\xf3\x46\xa7\xcf\xf2\xde\xca\x2a\xe3\xa7\x56\x84\x90\x5d\x68\xd1\xfa\x2c\x42\x8c\x79\x92\xc1\x62\x73\x18\xac\x69\xc1\x1c\x82\x25\x0c\x9f\x5a\x2d\xbc\x94\x25\x0c\x55\xde\xdb\x9a\x9f\xec\xa8\xea\x39\x11\x08\xef\x8e\xf9\x8a\x01\xeb\xce\x63\x25\xf1\x04\x01\x94\x5f\xce\x12\xee\x2c\x9d\xc7\x9d\xe5\xf0\xb8\xb3\xec\xfa\x38\xfe\xbe\x86\x0d\xfc\x84\xce\xb7\xf9\x31\x3a\x55\xf6\xdb\xf0\x6d\xb3\xd8\xbf\x41\x8f\x33\x20\xd3\xb0\x82\x1f\xdb\xb8\x9c\x97\xc3\x65\xdd\x12\xb8\x9c\x25\x18\x70\xd7\x5f\xa0\xe3\x44\xe0\x7c\x07\xf6\xcb\x4e\xbd\x9e\x26\x3b\x41\xad\xff\x58\x61\xa9\x59\xea\x2e\x74\x94\xea\x0a\x74\xe0\x7c\x07\x2a\xb4\x99\x80\xd4\xaf\xb7\xeb\xb1\x6b\xb3\xcc\x62\xff\x6b\xa5\xc0\xef\x1b\xa5\x55\xf5\x17\xa6\x05\x69\xc6\xcf\x05\x61\x05\xf8\x86\xf0\xc6\x0b\x61\xe0\x87\x0b\x60\xd0\x0f\x6a\xfd\xcd\x05\x3a\x95\x95\xe8\x2f\x74\xed\x4f\x0b\x36\x56\x98\xf7\xa2\x0a\xd7\x6e\xb0\xff\x82\xde\xae\x87\xc5\x7a\xbd\xde\xa1\x87\x85\x7a\x68\x42\xc5\xba\x52\x1d\x4b\x14\x08\x91\x0c\x38\xe7\xc7\x0e\x1e\xf6\x59\x09\xe3\x44\x3b\xee\x0a\x21\xeb\xec\xb4\xa8\x83\x2e\xbb\x08\xdc\x04\x8e\x58\x16\x4b\x28\x72\x64\xbf\xa9\x52\xf9\x5a\x67\x09\x2f\x6d\xdc\x26\x7c\x0b\xa2\x7d\xc2\x75\x77\x96\x86\xf2\xb8\xb3\x94\x1a\x8f\x3b\x4b\x78\xe4\x9e\x57\x1a\x37\x98\xc3\xf8\xa9\x9d\x6f\xbb\x26\x37\xee\x30\x3f\xc8\x4b\x3b\xcb\xcd\x4a\x63\x39\xdc\x81\xb2\x2a\x5f\x83\x05\xc6\x4f\xd0\x3f\x61\x31\xfa\xa7\xea\xdf\x22\x59\x82\xa9\xfc\x44\x18\x40\xc5\xf1\xd2\x74\x3b\x2c\x76\x17\x64\x97\xc3\x7f\xa1\x1d\x39\x04\xfc\x1c\xbd\x5d\xb9\x01\x6e\x33\x96\x80\xed\x27\x6c\xc5\x1e\xb4\xad\xb8\xc0\xe1\x2f\x41\x25\x9e\xe2\x02\x3a\xbf\x13\x55\xe8\x10\xab\x03\xcc\x05\xb0\xee\xbc\x1e\x7e\xa5\x87\x55\x2c\xe1\xfe\x4a\xb5\x91\x35\xcb\xac\x2e\x7a\xd2\x49\xd0\xd6\x01\x4e\xfa\xee\x39\x14\xf8\x7d\xe8\x2b\x5b\x15\x6e\x91\x9d\x74\xc9\x79\x4c\xaa\xf3\xb8\xbf\x72\x78\xdc\x5f\xd9\x43\x11\xb3\x0b\x0a\x5d\xbe\x3b\xab\x78\x63\x29\x3f\xa8\x57\x65\x6f\x84\x1b\xcd\x62\xff\x3b\x8d\xe3\x04\x69\xe3\x78\xfe\xba\x37\x4a\x10\xa9\x0c\x96\xd2\xec\xaf\xa0\xb3\xb2\x0a\xcf\xf6\x6a\x54\x25\x48\xbd\x62\x7e\x4c\x29\x68\xeb\xa8\xc4\xb2\x2f\xf9\x2a\x97\xb5\x67\xf1\x32\xeb\x8f\x38\x9d\x5a\x4a\x08\xb4\xb3\x44\x84\x76\x95\x88\x59\xc2\xc8\x1a\x2a\xf2\x0d\x13\x8d\xcb\x03\x81\x80\x71\x19\xf3\xd4\x7d\xba\xb4\xa0\x36\xfb\x6d\xdb\x06\x97\x28\xbf\xe1\x2d\xf3\x44\x5e\xda\xb8\xde\x3c\x06\xbe\x6d\xd8\x00\x37\x1a\xde\x71\xe8\x19\xeb\x62\x74\x9f\x66\x3f\x30\x74\x72\x79\xf0\x3e\x3d\xcf\x57\xbe\x8b\xde\x33\xbe\x0d\x37\xb0\x84\xe1\x13\xb4\xbe\xf2\x2d\x58\x6e\xdc\xc1\x3d\x6b\x25\x60\x96\xf1\xb5\xc6\x65\x82\x0c\xc7\x63\x80\x0b\x87\xff\x44\x39\x95\x6b\x31\xb0\x73\x1d\x2f\x6d\x7c\x53\x90\x81\x87\x7c\xc2\x75\xec\x43\x4e\x02\xff\x89\xb6\x55\x96\x74\xbe\xc5\x87\x37\xae\xe7\x25\xf4\x1b\x3e\x4c\x87\x43\x8e\xc3\x26\xf7\xb8\xb3\xb2\xb7\xc1\x6d\xf8\x51\x02\x4b\xe2\x94\x27\x0a\x34\xbc\xc7\x4d\x97\xf7\xda\x62\x38\x42\x2b\x5c\xae\x7c\x3f\xc0\x57\x58\x4b\x12\xac\xed\xd8\xb7\x29\x1d\x20\xac\x03\x7c\x77\x81\xcb\x83\xf7\x83\x8e\x5f\xc1\xda\xf3\x60\xff\x05\x8e\x07\xf5\x17\x74\xc8\xa0\x43\x1f\xeb\x50\xad\x0e\xed\xd7\x81\x92\xd3\xf4\xee\x0e\xee\x20\xa8\xbf\x10\x81\x29\x7b\x7e\x85\x05\x86\x4f\xe8\xb5\xe7\x41\x4a\x07\xfa\x44\x87\x0a\x74\x60\xcf\x05\xb0\xf6\xbc\x1e\x16\xe8\xe1\x27\xac\xd8\x5d\x00\x3f\x76\x78\xdc\x05\x42\x19\x34\x78\xdc\x1f\xeb\xf2\x95\x77\x6c\x06\xfc\x6e\x1b\x92\xe6\x2e\x80\xfb\x3d\xee\x02\x58\x3b\x3a\x04\x58\x73\x8f\x2f\x94\x15\x68\xef\x05\x3d\xdc\xaf\x87\xb5\x2c\xa1\x2f\x2e\xd0\x7b\xfe\xc7\x3f\x06\xac\x3d\xcf\x12\x60\xce\x15\xbd\x9e\x0b\xb2\x84\x30\xa9\x92\xb5\x55\x18\x0b\x0d\x26\xb0\xac\xd3\xb8\xd3\xb0\x0b\x5a\x18\x6b\x94\x71\x9c\x71\x3c\xfc\xca\x50\x05\x77\x1a\x76\xb1\x41\x8f\xfb\x2b\x61\x6c\x71\x39\x70\x5e\x32\x3a\x61\xb5\x2d\xab\x69\x02\x7f\x2e\xbb\xc4\xf5\x2a\x2c\xb1\x17\x64\x6f\x33\x4b\x3c\xc2\x32\xd0\x71\x02\xae\x37\xbc\xc5\x11\xfe\x6a\x9b\x53\x90\xe5\x17\x6f\xe3\xef\x36\x95\x34\x55\xf3\x37\xfd\x25\x5a\xb4\xde\x57\xce\x8a\x8b\xcb\xd1\x5b\x1e\xdf\x8e\xe2\x72\xa4\xe4\xdf\xf0\xb8\xcb\xe1\x04\x8e\x80\x4e\x58\xed\xd1\x3b\x20\xab\x87\x15\xc7\xca\xcd\xe3\xf9\x30\x4f\xc1\xb1\x72\x73\x38\xfd\xaf\x8b\xb4\xf2\xa4\x07\x55\xcb\x9c\x2a\x41\x01\x9c\x97\x0a\xb2\x59\x47\xa9\x2d\x2b\xbb\xc2\xe8\x6c\x9a\xc0\x37\xc3\x6a\xab\x0c\x6d\x55\x8a\x9a\xd1\x47\x4a\x71\x73\xb3\x71\x15\x47\x80\xaf\x2f\x15\x64\x6f\x83\x1f\x97\x66\x97\x40\x83\x1d\x7d\xcc\x18\xb2\xdc\xe5\x70\x55\xbe\xbb\x1c\x66\x73\x4a\x58\x66\x25\x58\xa2\x40\xe1\x28\x25\xed\x2e\x5b\x98\x53\x5d\x6d\x1e\xa3\x2a\xc8\x5e\xe5\x28\xcd\xce\xb6\xbb\x3e\x6b\x2a\xe3\x3b\x18\x34\x51\x90\x00\xc2\x0f\x0c\x9d\x5a\xf4\xb6\x6f\xbd\x1d\x6d\xf0\xbd\x85\x53\x02\x76\x82\xd5\x5c\xc2\x98\xf3\x08\x62\x34\x19\x20\xab\x66\x1c\xb2\x78\xcd\xe6\x08\x6e\x84\x6d\xc7\x67\x8c\x2d\xf4\xb5\x5e\x74\x3f\xff\x34\x52\xca\x26\xe9\xd0\x44\x1d\x4b\x94\xea\xd0\x47\x3a\xb4\x55\x07\xc4\x17\xf5\x70\xab\x1e\x7e\xa4\xb7\x7f\x5b\x27\x16\xe9\xea\x44\x22\x1d\x62\x2d\x62\x11\xaa\xb0\x88\x44\x1e\x9c\xbd\x12\x84\xe3\x86\x09\x38\x45\xc1\x89\x7a\x38\x29\x3e\x17\x2a\x2b\xdf\x44\xeb\x70\xaa\x68\x7c\x8b\x97\x76\xae\x17\x16\xb0\x84\xbb\xdc\xd3\xb8\x95\x0f\x43\x1f\x1d\x2b\x17\x1e\xf4\xb8\xcb\x55\xd9\xe5\x0e\x8f\xbb\x3c\x7b\x87\xf9\x17\xeb\x9b\x09\x56\x0a\xef\x61\x9b\x91\x92\x1f\x40\xf7\x87\xbe\xcf\x5e\x69\x47\x13\x58\xe9\xb1\x72\xfe\x22\xfd\xcc\x25\x74\xbf\x20\xb3\x92\x78\xb6\x5e\x69\x07\x1d\x27\x38\xc2\x3e\xea\xc0\xe2\x72\xa5\xa8\xd9\x83\x3e\x2a\x2e\x0f\x79\xd1\x89\x26\x78\x3c\x9e\xe2\x72\xeb\x18\x8e\x88\x51\x66\xc8\xf5\xaa\x1c\x91\x43\x9f\x43\x78\x8a\xcb\x3d\x05\x93\xe8\xf0\x76\x3a\xae\x9f\x9e\x77\x12\x3b\xc1\x2c\x03\x7f\x6b\x37\x8f\x71\xe0\xe6\x5d\xf0\xb7\x76\xd7\x2d\x6f\x0c\x1f\xc6\x05\xe1\x44\x5e\xe9\x9d\xc1\xdf\x87\xee\xd7\x34\x71\x79\x70\x92\x6c\x2b\xdc\x5a\x10\x91\x87\xe9\x8c\x1f\x69\x65\xf7\x77\xc7\xf1\x12\x7a\xea\xc5\x98\xfb\x35\xe2\x0d\x03\x1c\x01\xef\xc7\xab\x94\x25\x8c\x3b\x60\xf9\xbd\x75\x1a\x85\xb6\x1e\x2b\xe7\xe5\xe8\x23\xcf\xb1\x72\x61\x5d\xbe\x0a\x95\xe7\x84\x9b\x2f\x06\xf8\x73\xde\x14\xb3\xac\xfb\x65\x6d\x37\x62\xf4\x3a\xef\x2f\xfc\x04\xec\x4d\xef\x05\x3e\x9c\xdb\xce\xb6\x33\x04\x81\xde\xb4\xad\x83\xe5\x86\x1d\x68\xbd\xed\x2d\xf8\x2f\xc3\xe7\xaa\x9c\x70\xb3\xc8\x03\xb7\x19\x4a\xc0\x67\x27\xd0\x36\x5b\x89\x07\xbe\x69\x58\xc7\x12\xd8\xea\x90\xc9\x5c\xc8\xae\xff\xf8\x45\xe5\xaa\x1c\xb1\x6d\x07\xe6\xfa\xd8\x60\x60\xd0\x04\x9c\xef\xcb\x47\x01\xdb\x0c\xe0\x72\x7f\x81\x4d\x00\x1b\x07\xed\x40\xd4\x41\xef\xbf\xe0\xfd\x45\xe8\x56\xe8\xb0\x61\xed\xad\x66\x00\xbe\xbb\x00\xfe\x72\x1e\xef\x41\xeb\xce\xeb\x1d\xa3\x09\xb9\x40\x07\x06\xfd\x7a\x7b\x81\x8e\x5e\xf0\x2b\xd8\x73\x41\x6f\xaf\x3d\xd7\x0a\x8b\x6b\xcf\xb7\xc2\x4f\x81\x99\xa0\xd7\x9e\x47\x48\x66\xe1\xc7\x20\x24\x48\x91\x85\x97\xb0\x44\x02\x2b\xc2\x1b\xd1\xfa\xf3\xae\xfb\x90\x23\x22\x77\x46\x25\xac\xe4\x50\xe8\x0c\xeb\xa0\x5d\xbf\x72\x04\x9c\xd8\xf4\x0f\x40\xf8\xa1\x05\xaf\x53\x64\xb7\x71\x40\xea\x37\xda\x0d\x9c\x03\x6f\xe3\x72\x4e\x64\x96\x56\x5a\xb8\x20\xb4\xb2\xc1\x80\xa7\x99\x0f\xaf\xb4\x6a\x26\xa8\xcc\x63\xdd\xf6\x63\x3b\x85\xab\xd6\xa0\x4b\x6c\x15\x05\x0a\xc8\x19\x0f\x0a\x62\x4e\x44\x7f\xd6\x0b\xee\xfa\xc1\xd4\xbb\x78\xc0\x1f\x2e\x38\x40\xe0\x57\xf0\x0d\xc1\xdf\x60\x42\x6f\x16\x46\x25\xdc\x8a\xdf\x5c\xfe\xd6\xee\xc2\xd9\x04\x2f\x02\xe3\x88\x26\xde\x63\xf4\x94\xea\xac\x44\xc5\x88\x23\x3d\x2d\x79\xe2\x88\xb7\xde\x2c\x0a\x78\xf8\xeb\x7a\x7b\x01\x3d\x78\xcd\xdf\x5f\xd9\x2f\x7c\x6f\x21\xc4\x4c\xa5\x87\x63\x03\xe7\x09\xb1\xeb\x8e\x7b\x24\x7e\x41\x3a\xff\x75\x1d\x21\x76\x85\xe5\x2c\xf0\x4e\x36\xbf\x9d\xb3\xd4\xab\x30\xe7\x54\x0e\x7b\xdc\x23\xf1\xed\x5e\x20\x7c\x58\x63\x87\x9e\x9a\x63\xb0\x3f\xdf\x3d\xa2\x50\xde\xc9\x77\x69\x15\x1a\x6a\xdf\x0b\x86\xe0\xbe\xbc\x80\xf2\x8c\xb0\xd7\xbb\xc5\x15\xd5\xac\x94\xb2\x61\xca\xf8\x6d\x79\xb6\xe0\xb6\x17\x6c\x9e\x6d\x76\x5b\xff\xb6\x63\xf1\xd3\xec\xb5\x9f\xf7\x2b\xec\xdc\xfb\x24\x0c\xf2\x22\x8f\xc7\x38\xec\x1e\xd1\x18\x78\x19\x3b\x9e\x6e\xef\xf0\x4a\x5c\x87\xd2\x2b\x3d\x81\x3a\x42\x6c\x96\x7a\xad\x82\xc2\xfb\xab\x10\x66\xf4\x80\x29\x9d\x9e\xfc\xca\x61\xf7\x48\xbe\x42\xd9\x7a\x6f\x14\xf7\x48\xfc\x2e\xfe\x0a\xbc\x06\xaf\x97\xea\x8c\xc3\xfb\x78\x83\x57\xc5\x29\xe0\x6d\x2b\xe1\xa9\x25\xc4\xf1\x13\xb2\xaf\xe9\x0a\xb2\xaf\x6b\xa6\x38\xda\xcb\x8e\x12\xf9\xfc\x20\x28\xe8\x40\xfd\x3e\x8f\x57\x2a\xd8\x8b\xdb\x51\x73\x7f\x3b\xec\x44\x87\xbb\x09\xe8\x43\x9d\x8d\x47\x90\xcf\x77\xd4\x9c\x1a\x82\xfa\x43\xd0\x2e\x77\x73\xb1\xdf\xdf\xcc\x8b\xfd\x87\xd1\xa5\xc6\x66\xd4\xe1\x3b\xec\x6a\xaf\xe9\x2c\x69\x6e\x56\xde\x76\xb7\xdb\xf3\xdd\xed\xc5\xfe\x52\x7e\x30\x66\x50\x19\x51\x33\xb0\xe9\x66\xc9\x40\x40\x18\x50\x6e\xc1\x47\x0a\xf6\x7e\x7e\x23\x78\xa0\x0b\x5d\x82\x7e\xd4\x01\xbb\xc0\x26\x1f\xba\x04\x3b\x51\x07\xf4\xf1\xe3\xc1\x03\x5d\x60\xbd\x0f\xf9\xe1\x25\xd4\x05\x3b\x58\x02\x35\x37\x76\xa2\xc3\x3e\x9f\xeb\x41\xd4\xc9\x8b\x9b\x7c\x4d\x9d\xc8\xcf\x8b\x9b\xba\x9a\xfc\xee\xce\x62\xbf\xb9\x1d\xf9\x61\x33\xea\x82\x87\x19\x70\x65\xd8\x53\x4b\xf4\x6a\x06\x22\xf2\xe8\x2b\xc3\xa5\x0e\xb0\x69\xb8\xc0\xce\xfd\x5a\x46\x88\xad\x41\x86\x61\xc3\xc0\x89\xbe\x98\xd3\x1a\x09\xfd\xf5\x25\x7a\x7b\x2f\x99\xc3\x9e\x27\xc4\xfc\x72\xf7\x88\x42\x13\x96\xef\xfe\xb3\x39\x5c\x1f\xe7\x12\x3f\x97\xc1\xd8\xdd\x2d\xb0\x53\x6f\x8f\x73\x5d\x77\x9f\x69\xec\xe4\xaf\xdc\x5a\x7a\x6b\xb1\xeb\x17\xf0\xcb\x45\x7a\x4e\x17\x58\x71\x29\xac\x45\xdd\x6a\x1e\xa7\x42\xfe\xec\x33\xd0\x8f\xba\xb2\xcf\xc2\xae\x7c\x21\x22\xcc\xaf\xee\x52\x76\xd2\x5b\xba\x90\x1f\xc8\xbb\x50\x57\x09\x1b\xe6\x33\xc7\xd1\x6f\x77\x71\xcf\x42\x1f\x78\xf9\x12\x6a\x81\x67\x50\x2b\x3c\x0b\x1e\xe8\x32\xf8\x0d\x5d\xa8\x55\x19\xd1\x1c\xe6\x03\x6f\x77\x81\x07\xba\x58\x25\x03\xd6\xf5\x09\x8d\x41\x7f\x22\x4b\x80\x96\x8e\xa6\x44\x06\xcc\xee\x4b\x97\x83\xa7\x07\xc1\xec\x3e\xbb\x5b\x1d\x67\x96\xa6\xa7\xa7\xa7\xc7\x4f\x60\x09\x20\xef\xda\xc6\xe6\x1b\x7e\x61\x42\x57\x44\x27\xae\x82\xa2\xe1\xa7\x4e\x73\x3f\x80\xb0\x76\x96\x30\xdc\x89\x19\x54\x8e\xad\xbc\x85\x06\xc0\xc3\xbe\xd0\x7f\x70\x59\x83\xdb\x41\x4b\x87\xa1\xbf\x00\x7a\xac\x00\x14\x77\x22\x4f\x0e\x01\xdb\x39\xc2\x91\x23\x86\x17\x2b\xda\xe3\x05\xaf\x4b\x90\xd0\x1f\x07\x58\xb1\x5b\x75\xb1\x24\xa3\x6d\xb3\x79\x22\xfb\x08\xdd\xde\x01\x66\xf7\xb5\x65\x98\x6f\x80\xce\xab\x25\x9b\xe9\xe8\x00\x98\xdd\x27\x74\x69\xbb\x45\x0c\xc0\x54\xaa\x9b\x9b\x69\xf1\x45\xf6\x7e\xfe\x67\xa0\xba\x18\xa8\xc9\x80\x67\xb2\x5b\x74\xf6\x9a\xcd\xf0\x6c\x76\xab\xae\xa1\xd9\x77\xd8\xd5\x81\xce\xe4\x8c\xc0\x33\x5c\xd0\x9e\x7d\x16\x9e\xf5\xb8\xcf\x9c\x3e\x42\xf0\x13\x4a\x85\x9b\xfa\xe2\x33\x65\x47\x88\x7c\xe5\x40\x80\xe9\x61\xf3\xf8\x12\x8e\x00\x8a\x2e\x56\xbc\x6d\x33\x50\x74\x19\x4f\x39\xfc\x89\x20\xf3\x7a\x53\x62\x41\xe5\xa9\x92\xcd\x35\x99\xb0\xa5\xe6\x03\xd8\x1a\x08\x80\xef\x2f\xd6\x2c\x69\x7b\xdf\xf5\xc0\xad\x25\x76\x77\xcb\xbe\x8c\x86\x4e\xb3\x94\xfd\x98\x3f\x50\x7c\xe6\x56\x86\xd9\xb7\x2f\xa3\xa0\xf8\x0c\x1d\x7d\xad\x26\x13\x9e\xd1\x76\x8b\x61\x67\xcd\x07\xf0\x2c\x9e\xb0\x2c\xe1\xee\x54\xf9\xce\xc0\x4e\xa6\x66\x39\x6c\xa9\xf9\x0b\x6c\xc5\x24\x18\x1b\x08\x04\x58\x62\xdb\xe6\x6d\xac\x67\x5b\x46\xcd\xe2\xb6\x4d\x72\x5d\xcd\xd2\x36\x9c\xff\x01\x21\xd0\x7b\x2f\xc1\x44\xfa\xca\x30\x53\x10\x0f\x84\x68\x8e\x85\x9d\xf4\x95\x61\x0e\x34\xc6\xb8\xc6\x72\x26\x36\x3c\xf4\xcf\x72\xf9\xfc\x20\x4b\xb8\x2f\xf9\x2f\xf1\x62\x7f\x07\x83\x67\xeb\xfb\x3e\x74\xa9\xd1\x8f\x3a\x7c\x5d\xae\xab\x60\x7d\x3b\xfd\xc7\x76\xd4\x0c\x2f\xa1\xc3\xb0\x03\xd1\xd0\x8f\x16\xc3\x2e\xfe\xc2\xbd\x59\xdd\x09\x2f\x21\x1f\xec\x70\xfd\x64\x3c\xc5\xb1\xf0\x0e\x20\xdb\x4b\x61\x27\x20\xdb\x1d\x80\x6c\x07\x0f\xfb\x80\xaa\xdd\x70\xc7\xa1\x54\x29\x94\xdd\xa8\x93\x97\x80\x89\xed\x05\x78\xcc\x19\x60\x72\xbb\x43\x73\x13\x76\x7a\x45\xbc\xac\xf2\x14\x5d\x34\xac\x33\xb4\x58\xaf\x18\x5b\xbd\x99\x66\x69\x53\x6b\x77\x86\xce\xdd\xe2\xc8\x77\xb7\x28\xef\xb4\xd7\xbb\xa4\xed\x84\xe6\x9a\x43\xdf\x2d\xe2\xbb\x63\x3a\x35\x12\x30\x78\xd5\xdd\xa2\x54\x3a\xe2\x17\xc0\x4e\x55\x0e\x9e\x16\xf9\xed\xf5\xe6\xcb\x60\x6c\xbb\xde\xfb\xaa\x60\xf3\xc6\xf1\x05\xc2\x4e\xf0\xff\xf6\xfc\xcf\x1c\x3e\xbe\x39\xfd\xff\xf6\x25\xf4\xff\xc5\xd2\x16\xf4\x1e\x10\xc6\x81\xda\x5b\xe0\xf9\x1b\xf8\xa5\xed\x00\xef\x07\xf5\x17\x40\xed\x2d\x83\xc5\x5e\x50\x69\x01\x73\x6f\xd2\xf2\x01\x30\xe8\x37\xde\x66\x70\xdd\x85\x6b\x14\x80\x93\x51\x37\x7c\xb8\xc0\x4a\x1c\x98\x2c\x88\x5d\x48\x61\x96\xf8\x1f\x56\xd9\xdd\x93\xb3\x27\x3b\x3c\xee\xc9\xd9\xdd\xf0\x61\xe3\x64\x2c\xad\x91\x8f\x18\x95\x06\x26\xde\x40\xb7\x19\x30\x73\x80\x96\xdd\xc2\xf5\xeb\xb7\x38\x02\xfe\x09\x2e\x60\x33\x0c\xf3\x3c\x86\xf9\x60\x78\x44\x85\xde\x75\x34\x1b\xe7\xfb\x32\x74\xe8\x3d\x7b\x80\x17\xe5\x1b\x16\xf8\x32\x1b\xdf\x32\x8b\x79\x09\xad\x3c\x09\xdf\x83\x1b\xe0\x9f\x60\xb7\x1e\x06\xe0\xbb\xf0\x6d\x38\x0f\xdc\x19\xe2\x24\xb4\x38\xa8\x42\xe5\xd9\x19\x70\x3e\xda\x91\x9d\x09\x17\xb0\x52\x77\x39\xb8\xda\x8e\xb6\xc1\x79\xa8\x04\xfe\x89\xe1\x92\x43\x87\x17\xfc\x42\x46\x0b\xa7\xc0\xa0\xbf\xb9\xc0\x1b\x67\x56\x74\xc7\xe9\xc0\xdd\x33\x7a\xfa\xf2\x00\x8c\xf1\x5f\x84\xed\x8c\x71\xb2\xe1\x61\x07\x4e\xb5\xf0\x44\x41\xfc\x04\xc7\xf7\xdf\xde\x34\xf0\x69\x13\x1c\xdf\x7f\x77\xd3\x63\x38\x6e\xc3\x07\xe8\x9e\x8a\xc9\xf0\x98\x35\xcf\x78\xd2\xd8\x56\xd9\x85\x4e\x6a\xb3\x79\x78\xd2\x2c\x05\x7b\x6f\xa8\x50\x5b\xf6\x71\xd8\x66\x96\x80\x7d\x37\x9a\x79\x1f\x3a\x96\x9e\x9e\xce\x9f\xf4\x4f\xe6\xc5\xfe\x87\x2b\x26\xf3\xcd\xff\xfb\xb2\x77\xfc\x87\x6c\xcb\xff\x5a\xf6\xe8\x95\x8b\x2d\xb3\x32\xa3\x5e\x64\x0e\xe3\x23\xdb\x55\xae\x87\x0a\x74\xa5\x3a\x2e\x01\x7b\x7d\xd0\xdf\x5e\xef\x8a\x30\x5a\xf4\x76\xbd\x03\x59\x18\x3a\xec\x1a\x06\xc9\x5d\xb7\xea\x6e\xdd\x82\x9d\x0c\x41\x3e\x9b\x9b\xe7\x98\xb6\x5a\x9d\x33\x04\x63\x19\x15\x8a\xcd\x91\x26\xd4\xde\xe4\xaf\x87\xa9\xcd\xaa\x9c\x76\x55\x82\xfc\xa6\x30\x09\xa9\x73\x32\xd2\x04\x41\x9c\x26\x40\x35\xf2\x9b\xc5\x39\xed\xab\xd5\xe6\x63\x3a\x8e\x80\xed\xf0\x22\xbc\xa4\xd7\x69\x7d\xed\xba\x02\xdf\x45\x78\xc2\xa5\xd0\xa7\x05\x73\x44\x3a\x8e\xf0\x9d\x80\xc7\x60\x9b\x1e\xf2\xf0\xa4\x1e\xb6\x1b\x2f\x96\xaa\x7c\x97\x42\x37\xef\x23\xf0\xb8\xe1\xd2\xea\x13\x5a\x1f\xef\xe0\x82\xbe\x63\x30\xd2\xe6\x73\xc9\x14\x20\xfb\x86\x16\x9d\xcc\x3e\x0e\x4f\xa2\xb6\x6e\x02\xb6\xb9\xd5\xa9\x53\x66\x68\x32\xd5\xc5\xea\x00\x2f\xf5\x47\x0a\x6f\xa0\x13\xae\x33\xe0\xc4\x0d\x15\x3a\x89\x1d\x83\xda\xb2\x8f\x65\x9c\xde\xfa\x91\x21\xdf\xcc\xd6\x4f\x09\x8e\xdc\xb9\x71\xf9\xe2\xc9\xc6\x7d\x15\xa6\xcd\xaf\xa7\x3d\xa6\x0a\x22\xb5\x02\xc5\xc6\x4b\x48\x99\x5a\xa1\x50\xc0\x4b\x28\x36\x3d\x3d\x3e\x5c\x76\x09\x27\x5f\x45\xb6\x4f\xe1\x68\x46\x9a\xf8\xdc\x40\x3a\x3f\x04\x2f\x16\xa8\xb2\x7d\x66\xb1\x61\x32\x9a\x52\x3c\x19\x6c\xb9\xe1\xe1\x6f\xf9\x1f\x46\x0f\xc7\x4f\xe3\xfb\x18\x78\xc9\xd8\x6e\xb8\xa8\x8b\xaf\x87\xea\xf4\x74\x99\x1a\xaa\xf5\x30\x56\xa1\x50\xa8\x63\xf1\xef\x6a\x35\x8a\x8d\x9f\x26\xf3\xc3\xd8\x82\x7a\x42\x90\xb1\xd1\x39\x52\x4f\x77\xb8\xeb\xae\xc1\xe7\xa8\xab\xbd\x01\x35\xa5\xe9\xa8\x13\x4e\x71\xc5\x31\x78\xce\x4f\xc9\x54\x8f\x1a\xc3\x28\xa3\x91\x26\xdd\x25\x4b\xab\x87\x1a\x26\x5f\x29\x66\x63\xb9\x7a\xa8\x31\xf8\xd0\x14\x85\xb7\x5e\x19\x86\xa6\xa4\xe5\xc2\x29\x0c\xd2\x28\xd2\xf2\x34\xe7\xb9\xad\x9e\xfa\x38\x73\x3b\x4b\xb8\xce\xa9\xd0\xb1\x78\xa9\x30\x83\xcb\x9d\xa1\x79\x4c\xcd\x3f\xe4\xef\xc1\x2d\xe5\xc4\x51\xf0\xf8\x51\x67\xf1\x62\x7f\x0f\x1e\x03\x1d\xcb\x3e\x11\x2f\xf1\x8a\xd7\xba\x3e\xd5\x68\x54\x28\x16\x87\x33\x2a\x4c\xed\x9a\x9c\x70\xf4\x86\x20\xcb\x99\xa6\x75\x4d\xca\x89\xd6\x21\x75\x8e\xcb\x25\xce\x11\xa0\x5a\xef\x12\xe7\x7c\x08\xcf\xa3\x1b\x70\x3f\xba\x09\x6b\xd1\x2d\xb8\x09\x0d\xc0\xf7\x71\x8a\x9c\x7f\x9a\x3e\xfe\x0b\x3a\x03\x37\xa1\xb3\xf0\x7d\x74\x0e\xee\x47\xe7\x61\x6d\xe5\xaf\xdb\xe9\xe3\xbf\xd0\xde\x0b\xae\xbb\x95\xbb\x8d\x39\x95\x2e\xe3\x5a\x30\xf6\x0c\x98\xfc\x33\x2a\x87\x0c\xda\x01\x5f\x1f\x9d\x77\x63\xcf\xf8\x33\x78\xb1\x3f\x33\x84\x68\x64\xd0\x0e\xdf\xeb\x2e\x11\x83\xcf\x7a\xc5\x8c\xbf\x9c\x17\xfb\x77\xf8\x19\x5e\xec\x7f\x1d\xe5\x34\x96\xa3\xb5\xbe\x1d\x2e\x7f\xe5\xeb\x36\x86\x17\x35\xe7\x1b\xd7\x1a\x72\xe8\x6b\x27\x9d\xcf\xd5\x3b\x97\xd7\xd3\xc9\x77\x9d\x2b\xea\xe9\x27\xee\x82\xd3\x03\xac\xc4\x5d\xee\xc8\x77\x97\x77\x8b\x5c\xa2\x66\x98\x61\xcc\x04\x47\x47\xc0\xf7\x03\xf4\xd1\x11\x70\x7a\x00\x0c\x8f\xb0\x62\x77\x79\x63\x86\xc7\x5d\xee\xcb\x74\xe1\x74\x81\x71\xc3\x23\x09\xcf\xd6\x27\x2c\xab\xe7\x92\x79\x39\x07\x12\x56\xd4\x27\x2c\xaf\x87\x7e\xe7\xf3\xf5\xce\x8c\x7a\x8e\x80\x53\x90\x1f\x3e\xcc\x12\xfe\x76\x8d\x4b\x66\x4c\x30\xce\x64\xe8\xb2\x8b\xe0\x72\x7f\xa7\xe0\x92\x23\x01\x26\xc0\x99\x46\x81\x6b\xbc\xb7\x8c\x34\xae\x4b\xcc\xe8\x46\x59\x1f\xe7\xfa\x85\x26\x06\x41\xc4\xb5\x02\x5b\x42\x7d\x9c\xab\xd9\x26\xd0\x0f\x85\xba\xf6\xfa\x38\xd7\xf7\x48\xa0\xe3\x06\xc1\xa0\xbf\x80\x5e\x35\x38\x9a\x6e\x54\xae\x2f\xe9\x97\xef\x62\x50\x5a\xd0\x11\x30\xf6\x33\x5a\xb3\x6a\xf5\x35\x86\x0b\xf2\x62\x6e\x81\x95\x80\x8f\x1b\xaf\x33\x5c\xae\x35\x99\xbf\x39\xba\x98\x51\x46\xe3\x7a\x94\xe9\x7b\x2b\x64\x06\xca\xc0\xc9\x0e\x65\xe2\xec\xc7\xfc\x8e\x7f\x17\x65\xfa\xde\x73\xb5\xa3\x8c\xc6\x1c\x94\xe9\x5b\x6b\xfe\x19\x65\xc0\x1c\x94\x09\xd7\xd2\xeb\x7e\xe6\xbe\x02\xf5\x17\xd0\x7e\x78\x03\xd5\xc2\x9b\xda\xd5\xa7\xd0\x26\x78\x0b\xbd\x0f\x07\x40\xe5\x69\xba\xf4\xb4\xf1\x42\xe5\xa0\xf1\x57\xb4\x09\x9e\x41\xef\xc3\xb3\xe8\x03\x78\x0e\x6d\xa1\x8f\x14\xff\x94\xeb\x70\x38\xee\x0b\x5d\xf9\xfb\xf7\xf3\x62\x7f\xad\x93\xe9\xf1\xce\x75\x29\xbc\x40\xb8\xaa\xed\xd6\x68\xbb\x79\x26\x6f\xe9\x4f\xcb\x5e\xb0\x06\x8d\xef\x5b\xef\x6e\xe7\xe2\xd8\x7e\x28\x32\x88\xa1\xd4\x20\x03\xef\x5e\xe3\x68\x48\x40\x09\x34\x43\x05\x57\xc6\x5e\x84\x63\x0c\x63\xad\x53\xea\x14\xfd\x25\x2e\x63\x7f\x33\x7f\xcb\x78\xad\x00\xda\xe0\x0a\x1d\x27\x81\xff\x04\x77\xcf\x70\x22\xd3\xb0\xc8\x34\x24\xb2\x3e\x6b\x5c\xc6\x11\xac\x1c\x66\x18\x32\x59\xc2\x9f\xe9\xce\x48\x0b\x16\x67\x1c\xcb\xe0\xe5\xa3\x4f\xe1\xb2\x2d\x03\x65\xc6\x0b\x86\x77\xe1\x7b\x86\xb7\xe1\x06\x2b\xc1\xca\x8d\x6b\x0c\x7a\x96\x30\xfc\x5c\x5a\xbc\xc6\xbf\x86\x17\xfb\xf5\x68\x8d\x4d\x0f\x3a\x4e\x80\x67\x7e\xe6\xe6\xb2\x67\xb1\x3a\xdc\x3c\xf6\x24\x56\x6d\x9d\x88\x18\x75\xd7\xba\x0c\x22\x14\x8e\x4f\x46\x42\x8f\x92\x91\xd1\x70\xde\x67\x14\xee\xe5\xc8\x1e\xb0\xb2\x17\x44\x5f\xe6\x08\xf8\x15\x70\x74\x71\x1b\x58\x01\x7c\xd9\x85\xac\x3a\xe5\x38\xc0\x76\x21\xab\x26\x02\x3d\x98\x16\x84\x0f\x02\xbe\x2f\x84\xfb\xa1\x4b\xaf\x94\xe0\xce\x26\x56\xa0\x5f\xb9\x0a\xa6\xf7\x72\x04\x7c\x10\xf4\x5f\x0d\x7d\xa3\xed\xba\xca\x7d\xc6\x12\xe0\x76\x0f\x47\x40\x2b\x7a\x10\xbc\x21\x70\x05\x2c\x41\xaf\xee\xd1\xd1\xd1\xc2\xd6\xb4\x09\x67\xac\x1f\xe3\x2a\x17\x7b\x5a\x66\xf0\x4f\x9e\xf9\xb0\x31\x2e\xfc\xee\xe0\xdf\xcb\xf4\xff\x10\xfd\x3d\x9a\xfa\xf5\xa2\x11\xbd\xda\x15\x17\xa2\xa9\x3c\x71\xc0\x73\xd2\xd3\xd6\xd0\xd2\x8c\x95\xc1\x43\x22\x8b\xce\xbb\xd5\x1c\x1e\xfa\x94\xb2\xba\x87\x6b\x61\x05\xf0\xca\x55\x7d\x08\xb4\x3a\xa4\xb5\x5e\x29\xa1\xf9\x3e\x66\xcc\xfb\x7b\x3f\xae\x3b\xf1\xc1\xd4\x1b\x95\x37\xff\xf2\xf1\x90\x4b\xf9\xd7\xb1\xd3\xd6\x34\xff\xf5\xc2\xf2\xc3\x07\xfe\x76\xff\xaa\x0d\xf4\xdf\xbe\xe9\xc9\xfc\xf0\x6f\x2b\x35\xf9\x5b\xb6\x7c\xba\xa8\x6c\xee\x70\x57\x53\xde\x63\xef\xa8\x94\xa1\xe8\x73\x67\xd9\x3e\x90\xdb\x8d\xaa\x72\x32\xcc\x12\xf0\x61\x2f\xfc\x14\xac\xee\x45\x16\x6f\xbe\x59\x02\x1e\xe9\x01\xd1\x97\xd1\x38\x55\xce\x56\xe1\xba\xb6\x5b\xa4\xb3\xca\x6a\xd0\x3e\x4b\x89\x65\x1b\x6a\x56\xde\x44\x9f\xc2\x2a\xe0\xe8\xc2\x8e\x69\x67\xfb\xc0\x3b\x57\xb1\x3f\xf5\x40\xd9\xc3\x40\xa7\xa1\x1a\x7b\xe9\x33\x90\xdb\x0d\xde\x0f\xf9\x87\xce\xed\x0e\x41\xa7\xf6\xba\x9d\xf0\x0b\x9b\xd3\x53\xca\x8b\xfd\xd5\xd0\x69\xab\xc6\x63\x3b\x6d\xd5\xaa\x1c\x99\x59\xe4\x09\xd1\xfc\xd0\xc5\x95\xb2\x44\xd3\x17\x7c\x27\x53\x4a\x2d\xfa\x50\x1f\xe7\x7e\x0a\x7c\xd4\xeb\xd0\xa8\x38\x6f\xc8\xd1\x05\x42\x17\x57\xc9\x5e\x05\xb9\xdd\x9c\x83\xbd\x0a\x7e\xe8\xaa\xac\x40\x3b\x61\x85\x71\x67\x28\x02\x16\x58\xc5\xe5\x41\x0b\x78\x34\x60\xf5\xb2\x04\xfd\x48\x6f\xc8\x53\x3f\x74\x81\x95\xbd\xdc\x9b\xac\x50\xe9\x00\x59\x4c\xe8\x3f\xac\x83\xc1\x6d\x2c\x1d\x1d\x60\x09\x41\x8a\x0f\x93\xee\x33\x9a\x41\x2e\x08\xdb\xf0\x79\xcc\x78\x0a\x7c\x32\x52\x79\x8a\x51\x59\xc5\x35\xb7\x37\xdd\x2c\xb9\xdd\xac\x1c\x60\xc2\xae\x83\xa4\x1b\x31\xb7\x95\x32\x60\xbb\xe1\xbf\xae\xb5\x4a\xb7\xdd\xad\x19\xd8\x77\x7d\xdb\x40\xc9\xf5\x66\xfe\x3a\xc3\x15\xc1\x41\x74\xdb\x5b\xaf\x19\xdb\x34\x18\x76\x57\x7d\x47\x7d\x1b\x0d\xf2\x7d\x0c\xb0\xdd\x00\x7f\xb9\x81\x6e\x34\x0e\xf2\x03\x60\xc6\x8d\x8c\x9e\x0d\x32\x73\x03\xba\xad\xf0\x0f\x0a\x9b\xac\x77\xde\x0f\x06\xf8\xbb\x0c\x78\xfc\x46\xf6\x20\xb8\x74\x43\x05\x0c\x37\xcc\x12\x30\xe3\x46\xbe\xf2\xe6\x53\xd7\xcd\x3f\x6a\xad\x12\x8e\xb8\x39\x58\x32\xd8\xcc\x0f\x08\x8d\xe0\xf1\x1b\x3e\x4c\xa5\xb5\x8a\x6b\x6e\xde\x1c\xd2\x35\x2b\x07\xad\xc3\x7a\xb3\xb8\x64\x30\xc0\x0f\xaa\x43\x23\x86\x0d\xa8\x6f\xa9\x6f\xba\xa6\xe4\xf3\x67\x84\x1f\x8c\x77\x8d\x77\x8c\xb7\x5d\xe3\x34\x52\xbd\xde\xbc\x27\x2d\x0f\x0e\xb2\x7f\x60\x94\x03\xf4\x4d\x09\x5d\xdf\xc9\x8a\x69\x5d\x67\x80\x13\xf1\x67\x02\x68\x33\x3c\x87\x3e\x80\xe7\x51\x86\x2d\x93\xde\x84\x61\x4d\x35\xf8\x78\x28\xa1\xf5\x7d\xf6\xdf\x8e\x66\xee\x16\x96\x08\x04\x80\xbc\x8b\x96\xde\x08\x39\x28\x5e\xe2\x00\x53\xef\x56\x9e\x2a\xbd\x77\x4e\x65\xf0\x01\x5c\x57\x47\x88\xbd\x1f\xf3\x12\x5a\xd2\xde\xac\xbc\xae\x77\x30\x20\xef\x52\xa9\x03\xac\xb8\x5e\x60\xc7\x67\x27\xd4\xaa\x94\x97\x36\x8f\x92\xc3\x63\xa8\x05\xf2\x18\xd8\x02\x8f\xa3\x56\x78\x82\x13\x85\x10\x88\xe7\xa5\x4d\xc7\x34\xbf\x36\xf1\xe8\x78\x48\x34\x3a\x51\xc2\x82\xa8\x4b\x74\xe9\x75\x30\xbb\x4f\x95\x13\x64\x80\xbb\xeb\xa9\x36\xc6\x78\x7a\x3b\x78\x54\xa0\x3f\x0e\x8c\x86\xab\x04\x87\x6b\x24\xe6\xb4\xb2\xdd\x78\x2a\x86\xa5\x27\x5d\x8b\x39\xad\x6c\x0b\x35\x13\xae\xb1\x04\x1d\xf4\xdb\x41\xd1\x70\xa9\xd6\x37\xdd\x75\xcb\x10\x83\xc3\xcd\xf7\x73\x75\xf4\x95\xe1\xe2\x33\x81\x9a\x5d\x82\x86\x6e\xbb\xce\x6a\xc2\xd1\x39\xdb\x79\xf0\xb7\x7e\xe0\xed\xaf\x3c\x45\x7f\xd3\x1f\xc0\xa8\x69\x74\xfb\xf5\xff\x09\x13\x71\x23\x80\xad\xf1\xb7\xf0\x62\x7f\x2b\x03\x5e\xbe\xc6\x3f\x00\x96\x5f\xe3\x95\xe0\xa3\x2e\xf0\x76\x57\x86\x04\x3f\x5f\xec\x7a\x2e\x83\x9e\xd3\x05\xbc\x57\x1f\x58\xaa\x94\x01\xef\x55\x6a\x69\x49\x86\xf2\x0a\xed\xbd\x0a\x1e\xe8\xb2\xdd\x45\x2d\x65\xaf\x89\x50\x2b\xbd\xba\xbb\x2c\x43\x94\xaf\xc9\xac\x4d\x16\xb5\x65\xf0\xb7\x6a\x33\x44\x6d\x9b\xf9\xab\x4d\x77\x6b\x53\x44\x65\xc9\xa2\xda\x4c\x51\x59\x86\xa8\xf6\x80\xa8\xac\x5e\x54\x7b\x4c\x54\xc6\x8b\x6a\x5f\x17\x95\x31\xa2\xda\x8d\xa2\xb2\x0d\xa2\xda\xad\xa2\xb2\x3c\x51\x6d\xb1\xa8\xcc\x2c\xaa\xad\x10\x95\xb1\xa2\x5a\xb7\xa8\xcc\x25\xf2\x34\xdc\x35\xff\xc8\x04\x38\x42\x57\x93\xa1\xed\x96\xc0\x96\x9a\xcd\xdd\x04\x6c\xd5\xb3\x44\x71\x4b\x80\xf1\x42\x97\xe4\xac\xab\x0d\xb5\xf0\x52\xd4\x2a\x4c\x44\x67\x60\x33\x3a\x0b\x0f\x83\x84\x7e\x30\x8c\x7d\x08\xe6\x06\xe9\x07\xfa\xd9\x96\xd0\x2b\x3a\x4b\x18\xfe\x64\x58\xc0\xd4\x34\x97\xcc\xdb\x47\x6f\x9b\x8f\x17\xfd\x7c\x5e\xdc\xb4\xa0\x69\x3e\x63\x3c\xa5\xb5\x06\x6b\x16\xdf\x3c\x5c\xd2\x1a\x10\x06\xc0\xd4\x7e\x70\x74\xc4\x2a\x02\x09\xfd\xdc\x64\xd0\x1a\x12\xd4\xd0\x41\xcf\x0d\xa2\x21\x5e\x42\xa3\x40\xd3\x10\xc3\x05\x21\xcb\x3c\xc5\x32\x31\xac\xf2\x21\xee\x0b\x70\x65\x98\x15\xb9\xcf\x39\x3c\xee\x73\xa1\x0b\x0c\xfa\xca\x30\xf6\x31\x73\x80\xc8\x3d\x76\xe4\xa7\xd6\x96\xc6\xed\xa5\xa6\x7f\x95\x7c\xf6\xe3\x9e\xc7\x27\x4d\xf8\xde\x55\xf5\x03\x35\xf6\x75\x8d\x72\xcc\xf9\xbb\x2c\x01\x7e\xea\x0a\x91\xff\x76\x98\xb1\xa5\xa3\x67\x74\x0d\x67\x7c\x67\x5d\x53\xf4\x06\x1e\x1e\x63\x83\x1e\x37\xaf\xb9\xeb\x4d\x16\x06\x3c\x1e\x37\xaf\xcb\x77\xf3\x76\x3d\x7f\x5e\xcf\x12\x6e\x5e\x23\x4b\x17\xe4\x9c\x2d\x9f\x1e\xdb\xce\x12\x06\xd6\x90\x6e\xa0\x39\x39\x7c\x06\x2e\xf6\x2f\x76\xd3\x69\xc1\x62\xfa\x18\x1d\xda\x8c\xe8\x63\xb4\x70\x99\x76\xfa\xe8\x0f\xfa\xc1\xe3\x02\xfd\x43\xa0\xb2\x1d\x5d\xac\x22\xea\xeb\x3f\xe6\x2f\x27\x28\xeb\x8d\x19\x30\x13\x9d\x83\x9b\xd1\x79\xf8\x01\x7d\x28\x10\x0c\x82\x07\xba\x8c\xa7\xac\x23\xda\x1a\xbe\xc4\x5f\xb3\xe4\x26\x5f\x72\x2e\xc0\x5f\x37\x3f\xd3\x5c\x73\xb8\xa4\xeb\xe6\xd9\x12\x5f\x40\xb8\x69\x56\xa0\x23\x8d\x9d\xe8\xa8\xcf\x67\xbe\x8f\x7e\xb3\xc3\xed\x2f\xee\xf4\x77\xf2\x62\xbf\xcf\xef\xe7\xc5\xfe\x2e\xe4\x6f\xa4\x51\x97\x6f\xb1\xd9\x6f\x1d\xa9\xf1\x97\x2c\xa9\x39\x72\xf3\x5c\xc9\x91\x00\x7f\xbd\xf2\x14\xe3\xa6\x8b\x5b\x50\x0b\x2f\x6e\x6a\x6d\x6a\x41\x34\x2f\x6e\x5a\xdc\x44\x37\x36\xa3\xc5\xbe\xc3\xe6\x4e\x17\x5e\x42\xb6\x96\xfa\x66\xd4\xea\x3b\xec\xaa\x34\xa4\xa3\x56\xf8\x0c\xfd\x8d\xcf\x78\x0a\x87\x64\x78\xc4\x1a\xd4\xd6\x2c\xbe\xd9\x5a\x72\x36\x20\x0c\x98\xff\x8e\x8e\x34\x9e\x41\x47\x7d\xbb\x68\x79\x17\x98\xdd\x87\x5a\xa0\x27\xb4\x2c\x3d\xc5\x2d\x0c\x58\x87\xfb\x7e\xd4\x0a\xbb\xe8\x45\x97\x40\x67\x1f\x3d\xfb\x22\xe8\xec\xdb\xb7\xb9\x26\x23\x67\xc4\x25\xca\x87\x67\x0c\x67\x55\xd9\x2d\x25\x19\xa5\xd9\xad\x25\x9b\x59\xa2\x26\xe3\xd8\x19\x4f\xcd\xe6\xfe\x33\xae\x3c\x3a\x3a\x80\xa5\x2c\xc1\x8b\x75\x29\x2f\x6d\x5c\x92\x43\xc4\xe7\xc2\xa5\x25\x2c\x3b\x11\x2d\x55\xa8\x72\x92\x15\xea\x25\xea\xa5\xf9\xfc\x35\xd4\x82\x49\x5a\x4b\x58\xfa\xc3\x4b\x21\xb5\x1b\xd2\x51\xab\xef\x19\xf3\x54\x03\x8d\x5a\xe1\x62\xda\xe9\x1b\x85\xd2\xa8\xd5\xb7\xd8\x25\x1f\x35\xc6\x1c\xa0\x0f\xf7\x05\xef\x15\xb0\xf1\x22\xfd\xe3\x55\x20\xe9\xe3\x82\xd0\xc3\xe5\x99\x08\x31\x03\xe6\x74\x05\xc0\x9c\xae\x9a\x0c\x86\x23\x60\x3a\x0c\x05\x94\x53\x86\xa4\xb5\x6d\xe6\x45\x2a\x5a\x7c\x11\x7c\xe3\xa3\xe7\x04\x70\xfd\x72\xa0\x3d\x8f\x17\x31\x92\x1f\xa7\x01\x77\x57\x20\x50\xb3\x14\x9e\xa9\xf9\x33\x3c\xbb\x6f\x49\x69\xdb\xfb\xae\x08\xf7\x19\x9c\x19\xe8\x09\x7d\xa1\x7d\x20\xc0\x11\x25\x9b\x4b\xd8\x9a\x3f\x6b\x6f\x2e\x2d\xc9\xa0\xa3\x03\xc1\x50\x0a\xe3\xe3\x50\x0b\xde\x23\x6c\x1e\xaf\xc6\x35\xbd\x3e\xce\x15\x89\xdf\x0d\x67\xf7\xd1\xab\x06\x9f\x1a\x64\xc0\xde\xeb\x5e\x95\x4b\x01\x67\xd0\x51\x43\xec\x9f\xe9\xf6\x0e\xf6\x2f\xfc\x6d\xb0\xe2\x12\x3a\xc3\x87\xa3\xb3\xbc\x84\xde\xd2\x15\xd6\xa2\x6e\x55\xfb\xd5\x38\xe4\x67\x50\x97\xef\xac\x59\x01\xbb\x90\xdf\x77\x06\xfa\xfd\x2d\xf9\xfc\x45\xe6\x9e\xa5\x0f\x74\xad\x6b\x21\xc0\xec\xbe\x46\x8f\xf9\x3b\x98\x80\x47\xf4\x6a\x5c\x6e\x9b\x07\xbf\x7a\x86\xa0\x08\xce\x0c\x41\xe3\x5c\xe5\x76\xe4\xa1\xe3\x06\x4b\x1d\xec\x5b\xa0\xa1\xa3\xc0\x0e\x1a\x3a\xd8\x77\xe8\xd7\xfb\xc1\x82\x6b\x78\x30\xcd\x1d\xd7\x39\x5e\xda\xd8\xe2\xfa\x19\x47\xdb\xdd\xb2\x8d\xeb\xac\x46\xc4\xd3\xd6\x8a\x7d\xb9\xe3\x34\x4e\xce\x96\x3b\x2e\xda\xc9\xd9\xd6\x54\x55\x55\x7c\x71\xed\xcb\x1b\xfb\xd1\x3e\x62\xf1\x91\x35\x85\xfa\xc2\xb3\x6b\xca\xf5\xe5\x19\x85\x2b\x0b\x73\x45\x99\xe1\xf9\xf1\x86\xbc\x86\x87\x9e\xdf\x18\x9e\x7f\xff\xc6\xf0\xc2\xf0\xfc\xea\x3d\x5f\xec\xdd\x28\xcf\xff\x62\x6f\xc5\x46\x79\x7e\x35\xaa\xd2\x7f\x2c\xd7\x5b\xe4\x1b\xc3\xf3\x99\x4d\xfb\x76\x57\x6f\x32\x6d\xfa\x24\x33\x3c\xff\xa1\xfd\xb6\xea\x3d\x97\x6d\xae\xeb\xd6\x8a\xbe\x2f\xf7\x76\x56\xef\xe9\x45\xc8\x95\x19\x9e\xff\xc4\xd6\x03\x4b\x73\x27\xcc\x22\x32\xc3\xf2\xe3\x0f\x8e\xfd\xe8\xf9\xc2\xb5\x85\x0b\xab\x91\x7d\x1f\x83\xab\xa5\x5b\xa6\x52\x85\xb1\x99\xe1\xf9\x11\x9f\x8c\x74\xee\x76\x5e\xdb\xdd\x59\x5d\x71\xee\xc2\x8e\xf3\x3b\x2e\x9c\xdf\x79\xe8\x7c\x6b\xf3\xd1\xc3\xc4\xd3\xdb\x9d\xc8\xb9\xbb\x6a\x0d\x7e\x70\xf6\xbe\x0a\x27\x53\x08\x76\xef\xab\xa9\xb8\x56\xf5\xc5\x00\xaa\x66\x0a\x41\x15\xb2\xf5\xd5\xec\x61\xaa\x6b\xf6\xf4\xed\xfe\xc2\xf7\x75\xc5\xde\xce\x8a\xdd\x55\x1f\x6e\xd9\x1e\x05\x08\x46\xf2\x63\x20\x18\x0c\x66\x80\xa5\xf5\x37\x2a\x7e\x93\x2f\xa0\x7d\x7b\xaf\xee\xeb\x43\xf6\x7d\xaf\xe4\x11\xc9\x8c\x89\xf9\x24\x37\x12\x6c\x29\x4c\x24\x30\xf9\xa4\xa7\x3f\xae\xe6\xd6\x7c\xbc\xc7\xe5\xfb\xa2\x62\xcf\xbe\x0f\x5c\x7b\x6d\x39\xae\xbd\xb6\x50\x67\x77\x35\xee\xee\xae\xce\x09\xd5\xc2\x6e\xd7\x8d\xbd\x5c\x15\x53\x08\xf6\xed\xe5\xaa\x88\xe4\x7f\x78\x9f\xb6\xfc\x41\x6f\x51\xbc\xf0\x97\x35\xd6\x8a\x7d\x5f\xaf\xd9\x57\x11\x5e\x18\x5e\xcd\x55\xfd\xbb\x65\x5f\x53\x18\xbe\x6f\x77\x95\x6b\x8d\x65\xcf\xee\xaa\xdd\x5f\xac\x29\x0c\x47\x5f\xed\x76\xdd\xa8\xe6\xf6\xb8\x72\xc7\xc7\xee\x1b\x7d\xc6\x85\x9e\xab\xc2\x2b\xb9\x35\xbb\xf7\xed\xfe\x72\xf3\x3e\x54\xf5\x66\xae\xd8\x89\xf6\xac\xb1\xd6\xec\xdd\xfd\x65\xdf\x9e\x9a\x7d\x68\xcf\x96\xc2\x27\xf6\xed\x47\xd5\x6b\x5c\x68\xdf\xde\xd8\xdd\xfb\xc2\x2d\x0f\xed\xd9\x5d\x99\x2b\x4b\xda\x57\xe3\xaa\xe6\x72\x65\x71\xf7\x9e\x24\x7e\x5e\xef\xbf\x7e\xe3\x87\xbd\x7b\xbe\xf9\x3a\xe9\x64\x6b\x2b\x7b\xa4\xb5\xe5\xe9\x13\xa7\x5b\x4e\x1e\x78\xe1\x68\xe3\x51\xb6\xa9\xed\x08\x8d\xa1\x47\x0f\xb4\x9c\x66\xf9\x03\xc7\x1b\x5b\x96\x9f\x38\x79\xdc\xdb\xf2\x74\x4b\x2b\xdb\xd8\xb2\xe8\xe0\x81\x06\xf6\xe0\xf1\x03\x2d\x87\x74\xee\xaf\xd9\x9f\x5a\x4f\xb4\x1d\x5c\x8e\x41\xc7\x1b\x4f\xb6\x1d\x5f\xe2\xfe\x9a\x6d\x6a\x3d\x1e\x02\xb4\x34\x9e\x5a\x71\xe2\x64\x2b\xcf\x37\x36\xb0\x07\x4e\x02\x87\xc3\x01\xd8\xc6\xe3\xc7\xc7\xfd\xb0\xa7\x86\x3a\x7e\xa0\xe5\xa7\xd4\x06\xef\xe2\x13\x27\x8f\xb3\xad\x3f\x37\xd1\xe7\xc6\x1d\x6f\x3c\x79\x9a\x6f\x64\x8f\x78\x5b\x1a\x4d\x0b\x9e\x3a\x6d\x96\xd0\x87\x02\x95\xad\xdb\x2b\x5b\x58\x13\x2f\x66\xcb\x40\x43\x87\xb1\xe5\x5b\x63\x2b\x58\x7d\xdd\xd0\x8f\x57\xbe\x02\x9e\xb6\x02\xee\x01\x50\xdc\xe9\x3f\x5d\xd9\x62\xf3\x28\x60\x8b\xa7\x96\x10\x7b\xf3\x84\xe3\x69\x2e\xaf\xc2\x25\x78\x3c\x06\x0c\xd0\xd5\x06\x45\xa1\x97\x08\x7d\x09\x8b\x5a\xbc\x89\xbc\x04\xbc\xdd\x45\x8b\x24\x12\x89\xe4\x0f\xc1\xe0\x43\xbf\x2e\x54\x5c\xbb\xfc\xf7\xb7\x9d\xdf\x5c\x1a\x5c\xb1\xd8\x0b\x3f\x8a\x52\x26\xa6\xbf\xbc\x64\x79\x7a\xda\xea\xf5\x1f\x6e\x0c\x46\x47\xbc\xfc\xe0\xd7\x87\x83\xc1\xbb\xc1\x60\xcc\xad\x25\x2f\x66\xfc\x31\x18\xfd\xc5\xdb\x73\xa2\x7f\x99\x12\x15\x59\xf0\x55\x74\x30\x38\x5d\x33\x55\xd2\x00\x88\x03\xdf\x3e\x91\xcc\x6a\xa6\xda\x4e\x7c\xfd\xbd\x63\xae\x28\xe3\x83\x53\xa7\xd0\xbc\xe0\x83\x2f\xc7\x49\x1a\x22\xe5\xc4\x12\x62\x3e\x51\xe9\x22\xbe\x6f\x7a\xbe\x50\x14\x1b\x7c\x95\x7a\x66\x4d\xfb\xc5\xf7\xa5\xb2\x8d\xde\xff\x0f\x7b\xef\x02\xd7\xc4\x95\xf6\x8f\x3f\x33\x09\x10\xc2\x25\xc3\x45\x45\x01\x39\x22\x22\x58\xaa\x78\xc7\x1b\x49\x80\x60\xc0\x40\x22\x17\x6d\xad\x42\xaa\x52\x83\x55\xb1\xf5\x02\x8a\x30\xb6\x9b\xa1\xd4\x5f\xe9\x0f\xf7\x5d\xbb\xda\xae\xbb\x53\x96\x71\x09\x5d\x5b\x62\xd7\xad\xb8\x6b\x57\xaa\xa1\x84\x22\x8c\xdc\x14\xad\xd6\x5e\x04\x6c\xab\x8d\xda\x7a\xa9\xd2\xfc\x3f\x67\x12\x04\xdb\xed\xfe\xde\xcf\xfb\xbe\xfb\xfa\x7f\xdf\xcd\x57\x9c\xcc\x9c\x39\xf3\x3c\xe7\xb9\x9d\xf3\x9c\x99\xe4\xcc\x98\x7e\xbb\xbd\xdf\x76\xfd\xe6\x37\xdf\x7c\xfe\xf9\xe5\xcb\x7d\x7d\xd7\x6c\xb6\xbe\xbe\xcf\xbe\xe9\xeb\xbb\x71\xe3\x06\xfe\xff\xd9\x4d\x7b\xff\xa7\xfd\xfd\xdf\x7c\x65\xb7\x5f\xb2\xdb\xbf\xb9\xf6\x4d\x5f\xdf\x4d\x7b\x7f\x5f\x5f\x5f\xff\xa7\x9f\x5d\xbb\xf9\xd9\x67\xfd\x76\xfb\xa7\x9f\x7e\x73\xad\xaf\xff\x5a\xdf\xcd\x7b\xf7\xae\x7d\xfa\x4d\x5f\xff\x37\xdf\x7c\x75\xa5\xff\xca\x8d\xfe\xfe\xfe\x7e\x7b\x7f\x7f\xff\x35\x5c\x72\x0d\xff\xc3\x7f\xd7\x3e\xed\xef\xb7\x5f\xba\x74\xe9\xfa\x8d\x1b\xd7\x6f\xfe\x5b\x1f\x22\xfa\x9b\xab\xef\xd5\xb7\x11\x7b\x7e\x57\xff\x37\x87\x8a\x1c\x59\x8b\x33\x3b\xb1\xb9\x3d\x59\x40\x50\xfe\xf5\x34\xc1\x7c\x5c\xff\x7f\x09\xe6\xc2\xfb\xbf\x23\xea\xdf\x21\xf8\x97\x1a\xef\xe9\xd9\x2c\xee\x9e\x95\xb2\xbd\xde\x7b\xaf\xe6\xb0\x6e\x9f\x82\x38\x5c\xa4\x29\xbf\xa1\x1f\x4c\x6b\xfe\x46\x70\x6d\xfb\xda\x08\x13\xb1\x2f\x97\x30\xc1\xbe\x02\x82\xfb\x78\x1f\x4d\x70\x17\xf6\xfd\x5f\x82\xbb\xb4\xef\x77\x04\xf7\xe9\xbe\x77\x08\x3d\x1a\x01\x00\x6f\x89\x1e\x82\x5c\x7e\xfc\xf8\x7c\x07\x62\x65\xc7\x4f\xd8\xb3\xe1\xad\xb7\x44\x22\xbb\x3d\xdb\x6e\xcf\x6e\xc3\xb0\x67\x37\x36\x36\x66\xdb\x6c\x6d\x6d\xd9\x04\x2e\x14\xfd\x2c\xe0\x2d\xd1\x52\xfc\xe9\x31\xbc\xb0\xd6\x3e\xb8\xd7\x5a\xdd\x46\xdd\x40\x23\xfa\x0e\xeb\x98\x73\x87\x8b\x98\xf3\x5c\xeb\xee\x73\x4d\x5c\x9b\xc6\xe3\x86\xde\x60\x88\xe8\xa2\xdc\xd0\xab\x03\xc9\x5d\x7a\xd6\x6e\x3c\xa3\x47\xa7\xbe\xb1\x79\x98\x26\x30\xdd\xe5\xc6\xce\x7e\x3d\xd7\x5c\xfd\x11\xbf\x8c\x55\x72\xf7\xad\x54\x5d\x4e\x4d\xef\x7d\xee\xd2\x3e\xc0\x32\x51\x58\x4e\x84\xe5\x8c\x25\x1c\x77\xff\x2b\xc5\xec\x6c\x7e\x1e\xf7\x45\xf5\x65\xe6\x63\xe3\x85\xa0\x7c\x51\x25\xd1\x54\x65\x2f\xeb\x79\x9d\xb9\x64\xfc\x14\x4d\xb6\xb1\x80\xb6\xf5\x46\xf4\x50\x29\x41\x2c\x70\x1f\x3f\xf7\x71\xf5\x85\x4a\xa2\xc9\xa2\xe1\x4f\x9f\x4c\xe3\x4f\xb1\x53\x93\x7b\xf0\xe0\x91\xca\xdd\xb7\xdd\x6e\xbc\x5f\x53\x1f\x86\x0d\x31\x05\x1b\xc2\x0e\xf5\x32\xa2\x66\x97\x66\x4b\x3f\xbb\x0a\x77\xf4\x43\x59\x94\xe6\xdd\xcf\x1a\xef\xb1\x4f\x71\xf7\x6c\x27\x6b\x0e\xeb\x7a\xe4\x04\x6f\x3b\x5c\xd4\xa3\x25\xf8\x2b\xf5\xb9\x04\x73\xae\xbe\x80\x10\x9e\x49\x35\xa3\x75\xad\xd0\x7b\x89\x27\x7b\x3f\x35\x5f\xd2\xff\xaa\xb0\x39\x56\xb4\x47\xa7\x67\x9f\xc1\xfc\xe0\xb0\x8e\x69\x3d\xcc\x32\x6d\x87\x8b\x6c\xbe\x38\xeb\x57\x37\x99\x5b\x99\x36\x03\xd3\x5a\xde\xaf\x47\xa9\xd8\x3d\xf6\x22\x49\xdf\x1e\xd6\xd2\xca\xbb\x5b\xda\x78\xf2\x96\x4e\xff\xc0\x71\x22\xda\x62\x83\x9b\x1d\x79\x3e\x2f\xe6\x5a\x6d\x37\x4d\x76\xa1\x6e\x44\x5b\xec\x15\x7c\x61\xdc\x65\x3c\xfe\xef\xbd\xdc\xa6\x1b\xcf\x02\x55\xe9\x78\x20\x36\xec\x61\x59\x10\xd7\x9a\x77\x4e\xc8\x10\xf2\xce\x6f\xbc\xb0\x87\xc5\xa3\x5b\x0d\x2f\xd2\x7c\x74\xad\x5c\xf3\xed\x4d\x2e\xc2\xd3\xa3\xa6\x89\xff\xae\x89\xff\xae\xee\xae\x1e\x00\x99\xfb\x1c\x53\x0a\xa9\xe9\x20\xba\x3a\x80\x9e\xef\xd3\x7d\x53\x6e\xec\x2a\x6b\x3b\xd0\x8a\x82\x2f\x1f\x68\xd3\x3b\x88\xdf\xe2\xda\x98\xdb\xe5\xc6\x3b\x4d\x26\x29\xf3\xad\xf1\x3b\xa1\x94\xef\x60\xa1\xc9\x7c\x29\xf6\x5e\x8a\xc2\x76\x7b\x6f\xbe\x58\x9d\xc7\xd7\x70\xa7\xf3\xc1\xf1\x44\xeb\x5d\x63\x8b\x81\x39\x65\xa8\x31\x41\xf9\x6e\x1e\xff\x71\xa7\xf0\xa6\x65\x37\x5f\x6e\x82\xdd\x7c\x79\xec\xaf\xcd\x97\xf8\xdb\x5c\x6a\xf5\x22\xfe\x8f\x66\xde\xaa\xa8\x7b\x7d\xcf\xef\xf6\xe6\x8b\xd4\x79\x3c\x92\xf6\x21\x7b\x6f\x39\xff\xfd\xde\xbc\xd3\x7b\x8a\x0c\x11\x67\x63\x43\x6b\x84\xc7\x5e\x7b\x8a\xcc\x3c\x25\xbb\x55\xd4\xc4\xdf\xf6\x34\x01\xd3\xc9\x74\x55\x21\x35\x0b\xe6\x4b\x54\x90\x34\xf6\x30\xb2\xf7\xe2\xf8\xb3\xf7\xee\x61\x23\x3a\x29\xa2\x19\xd9\x7b\xeb\x7a\xad\x51\x7c\x18\x77\x09\x49\xfb\xb8\x4f\xf7\x14\x45\x74\xc6\x7a\x99\x08\x24\xed\xc3\x29\xc9\xad\x22\x64\xef\x8d\xbd\x5b\xd7\x11\xd1\x49\xb9\x5b\xc5\x75\x7c\x72\x67\x0d\xd3\x5d\xbf\xf3\x4a\x74\xb6\x94\x39\x63\xa8\xc1\x7b\xb5\x96\x33\x75\x9e\x7b\xd5\xe8\xab\x9b\x5c\x77\xe5\x9e\x7a\xf8\x92\x69\xad\xdf\xf9\x25\xd3\x86\xee\xf7\x6a\xce\xf6\x1a\x1a\xef\xf2\x37\x98\x1b\x65\x37\x4f\x5e\xe7\x2f\x56\x5b\x9b\x8c\xd7\x51\xc8\x17\x86\x1a\xee\x66\x9d\x89\x05\xea\xff\x30\x37\xcb\x6e\x54\x89\xcb\xac\xa6\x3a\xe6\x2e\x77\xe3\xc2\xaa\xcb\xdc\xcd\x01\xc3\xe5\x4a\x1f\xe6\x26\x77\x63\x60\xd5\x65\xe6\x46\xef\x5d\xbe\x8f\xbb\xdb\xdf\x6c\xf3\xb5\xd6\xd9\x48\xc6\x1a\x61\x8d\x15\x73\xdf\xdb\xbc\xd0\xd5\x81\x88\x3b\x94\x78\x1f\x90\x4d\xcd\x54\x83\x9e\x90\xae\xee\xa7\x00\x40\x34\x91\x6b\x66\x7a\xb9\x8f\x98\xbe\x7e\xae\x8f\xb9\xcc\xf5\x32\x5f\x58\x34\xdc\xe5\xcb\x69\x75\x91\x2c\x61\xfe\xe2\x72\x6b\x93\xf9\x8b\xcb\x6d\x75\xa3\x59\xe0\x7a\x9f\xfb\x82\xe9\xad\x14\xf5\xf6\x05\x35\x71\xad\xd7\xbf\x68\xe2\xda\xae\x7f\x51\xd7\xac\x4f\xbe\xc3\x69\x98\x66\x2e\x8d\xf9\x68\x70\x55\x2f\x13\x30\xf7\x98\xfb\xcc\x0f\x26\x60\x42\xf5\x1c\xaf\x79\xf6\x73\xd6\x6e\x3c\x8b\x8d\xea\x6e\x55\xf0\x06\xe6\xec\x69\xde\x76\xdd\xcc\x37\xa5\xf2\xdf\x9b\x79\x75\x13\x9e\x03\x30\xbc\xf1\xb4\xa5\x85\x3f\x73\xf2\x54\xf3\x7f\x7c\x01\x64\x61\xf9\x63\xc7\xe2\xc7\xff\xf1\x75\x8f\x8b\x83\x87\xad\x7b\xbc\x28\x2c\x8a\xff\xc7\x6b\x1e\x8f\x7e\xb0\xe6\x71\xde\x98\x87\xd7\x3c\x2e\x0b\x7b\x68\xcd\xe3\x45\x61\x06\xb4\x28\x4c\xf3\xce\x58\xc7\x9a\xc7\xe1\x8e\x35\x8f\xcb\xc2\x1e\x5a\xf3\x78\x4e\x98\x8d\xb4\x49\x3c\x77\x0a\x93\xe0\x6f\x0d\x35\x9a\x8e\x10\xcd\xab\x03\x46\x28\x23\xd0\xab\x03\x1c\xf0\x64\x23\xd1\x08\x2c\x98\x21\xf6\x46\x2f\xf0\x64\x2f\x81\x4e\x87\x68\x12\x02\xe0\x20\x21\xe2\xc7\x1e\x04\x91\x55\x52\x37\xaa\x02\xbc\x58\xa2\x1e\x44\xfb\xc0\xab\xc9\xf1\xc1\xdf\xd6\x24\x04\x98\x5a\x18\x7f\x53\x30\x13\xa0\x99\x13\xf0\x8f\x1f\x40\x31\xaa\xb2\x64\xe3\x42\x89\x81\x51\x9f\x35\x30\x63\x0d\x4c\x58\xef\x58\x9e\xec\x0d\x63\xc1\xfc\xd6\xc1\xb7\xdf\x39\xfc\xe7\xf7\x8e\xfe\xe5\xd8\xfb\x7f\xeb\x3e\x73\xee\xfc\x85\x8b\x9f\x7c\xf9\xd5\xd5\x6b\xdf\x7c\x77\xeb\xf6\xf7\xf7\x06\x7e\xb0\x87\x84\x84\xf4\x86\x1d\x13\x8f\xad\xe8\x0a\x3d\xf6\x45\x68\x45\x67\x28\x17\x9a\xca\x85\x46\x8f\xad\xd5\x74\x87\x72\x6a\x35\xa7\x3a\x90\x5c\xbd\x30\x6a\xdd\x58\xd8\xd5\x3d\x3e\x78\xf2\xb4\xd4\xc7\xe7\xcc\x7e\x21\xfe\x37\xaa\xb5\xe9\xef\x2d\xbd\xb6\xb2\x6b\xf7\x8a\xf5\x67\xdc\x94\xec\x9d\x7d\x1b\xa1\x9c\xba\x6e\x62\x99\xa7\x35\x73\xee\x4d\x0b\x49\x0a\x59\x1a\xb2\x32\xe4\xf9\x10\x3a\xa4\x22\x64\x6e\xc8\xf8\x90\xd7\x42\x5e\x0f\x41\xf3\x33\xb5\xd9\x19\x89\x2a\x94\x9c\xa2\x51\xc5\x03\xd2\xa4\xa4\xab\xc6\x23\x40\xf3\x85\x9d\x78\xbc\x97\xa0\x5a\x98\x92\x3e\x1e\xcd\x7f\x5c\x95\x9e\x34\x3e\x1e\x17\x4d\xce\xcc\xca\x48\x49\x5f\x38\x19\xc1\x64\xad\x26\x29\x33\x2b\x63\x72\xba\x6a\x29\xfe\x00\x34\x8c\x1a\xcc\xd7\x26\xa4\xaa\x12\xb3\x9c\xa4\xe7\x27\xa9\x96\x24\x66\x69\xe2\x61\xfe\xf8\x78\x40\xe3\x11\x58\x83\xf8\x8d\x26\x3b\x03\x26\x3f\x06\xdb\x04\x9d\x0e\xd9\x1b\x97\x07\x0c\x1c\x20\x2a\x89\xfe\x32\x02\xdb\xc6\x4a\xf1\x22\xe4\xee\xed\x30\x90\xe6\x60\x08\x9e\xf4\x82\x6d\x36\xe5\x2d\x2c\xcb\x16\x86\xae\x0e\x68\x3a\x42\xac\x41\xbc\x9b\xc1\xa0\x49\x08\xa8\x3d\xe6\x15\xc2\x90\xc7\xbc\x43\x18\xd1\x5e\xdc\xed\x84\xee\x0b\xd9\x1d\xdf\xc4\x4d\x8c\xf6\x08\x6d\xc1\x7b\xcd\xd4\xbb\x07\xf7\x85\xa6\xa6\xa6\xfa\xd8\x43\x76\xc7\xff\x07\x96\xdf\x5f\x17\x5c\xff\x4a\x30\x2a\x0e\xe6\x26\x06\xa1\x82\xe0\xfa\xbd\x78\x5f\x58\x7e\xbf\x38\xf8\xc7\xcb\xef\xff\xbb\xd7\xde\xcf\xce\x54\x25\x55\x24\x3c\x09\x84\x84\x0a\x22\x45\x62\x37\x77\x14\x15\xeb\xe1\x19\xa7\x90\xaa\x75\x4f\x78\x79\xfb\xf8\xca\xfc\xfc\x03\x02\x47\x8c\x1c\x35\x7a\x4c\x70\x48\xe8\xd8\x71\xe1\xe3\x23\xf4\x86\x09\x91\x1b\x8b\x26\xee\x2c\xaf\x8c\x9e\xf4\x58\xcc\xe3\x93\xa7\x4c\x9d\x36\x7d\x2f\x3b\xa3\xa6\xee\xc8\xcc\x59\xb3\xe7\xcc\x3d\xde\xc4\xcf\x9b\x7f\xf6\x52\x7c\xbf\xed\x67\xde\x90\xf0\xfa\xdf\x7d\x43\x42\x70\x75\xe4\x3e\x08\x1d\xf6\x86\x04\xa1\x20\x64\xe8\x0d\x09\xc1\x3f\xf7\x86\x84\x3b\xff\x9e\x37\x24\x1c\xfe\x0f\xbd\x21\xa1\x6a\x1a\x0b\xc7\x00\x9b\x8c\x99\x98\xca\x44\xa6\x86\x02\xb6\xe3\xb1\xe9\xb8\x24\x35\x72\x62\x6a\x64\x64\xe8\x74\xa1\xe4\x99\x61\x25\xcf\x08\x56\x8f\x8c\xf6\x68\xc4\x97\x9b\xe3\x99\xc8\xd4\xd4\xd4\xfd\x10\xd2\x64\x8e\x67\x26\xe2\xdd\xe9\xc2\xee\x24\xbc\xfb\x0c\xde\x4d\x8d\x9c\xe4\xb8\x74\xff\xbe\x61\x87\xfb\x5b\x42\xb8\xc8\x49\xd1\x61\xfb\x21\x94\x9b\x18\x1d\xb6\x7f\x7a\x28\x87\x8f\x9e\x09\x6d\x6a\xa6\x6a\xcd\xf1\xb5\xd1\x1e\x15\xfb\x42\x77\xa5\xa6\xa6\x56\xd8\x43\xf4\x83\x8b\xe2\xef\x10\x5e\xa4\x71\x10\x42\x1f\x7e\x81\x86\xd4\x2d\x12\x7d\x3b\xda\xf1\x02\x8d\x9b\xa3\x4d\xb5\x78\x73\x10\xdd\x1c\xbd\x97\x7d\x9d\x17\xd5\x43\xe8\x93\xf6\x90\xda\x63\xaf\x87\xfe\xf8\x05\x1a\x42\xe1\xb0\x17\x68\x84\x08\x2f\xd0\xc0\xf5\xd0\xad\xd1\xa6\x8b\x0f\x48\x7d\x85\x6e\x8e\xfe\xe9\xbb\x33\xd0\x49\x76\x27\xcb\xd6\xfd\x65\xfb\x9f\xed\x6c\xb5\x9d\x65\x59\x3f\x02\xa0\xc5\x02\x44\x03\xcb\xb2\x7f\x61\x2d\xce\x45\xc7\xea\x84\xbf\x9d\x83\x7f\x76\xb6\xeb\x25\xd6\x82\xab\xb3\x27\x1a\xd9\x8f\xda\xd9\x56\x96\x3d\xc1\x76\xfe\x89\x6d\x60\xd9\x26\x96\x6d\x3f\xc2\xb6\xd7\xb1\x6d\x98\x00\xcb\xe2\xb2\x0f\xd8\xba\x3f\x60\x02\x6c\x17\x8b\x49\x5a\x70\x7d\x2b\x3e\xf7\x76\x3b\xeb\xe0\xf1\x36\xcb\xb2\x1d\x02\xa7\x36\xb6\x8e\x6d\xb4\x63\x1e\xf8\x6f\x27\xdb\x31\xc8\x92\x3d\x81\xcf\xb7\xb0\xec\x07\x42\x49\xd7\x0b\xb8\x05\x1d\x76\x96\xbd\xe4\x6c\x64\x2d\xcb\x1e\xc1\x9f\x8d\x2c\xdb\xfa\x2e\xdb\xd9\x88\xf7\xff\xc0\xbe\xdd\xc0\x9e\x68\x67\x1b\x3a\x58\x4b\x03\xdb\xf1\x17\x7c\xf2\xa8\x40\x65\x27\xcb\xbe\xc0\x5a\x76\xb6\x75\xb1\x67\xac\x1d\x4d\x6c\x67\x1b\xdb\x6e\xe1\x5b\x1a\x4e\x58\x58\x6b\x27\xdb\xd0\xda\x73\xa6\xa1\xe7\x6f\x2c\xbc\xf4\x52\x57\xeb\x89\x36\xbe\xa7\xe1\x83\x16\x0b\xdb\x68\x6d\xb1\x54\xc0\xe0\x42\x6c\x7f\x85\xf7\x59\x96\x85\x33\x4d\xd6\x13\x4d\xec\x99\xb6\xae\x96\x93\x6c\x4f\x5b\x17\xdb\x62\xfd\xc8\xf2\x37\x16\xac\xad\xdd\x0d\x2d\xd6\x93\x6c\x47\x4b\x5b\xe7\x83\x83\x93\xed\xd6\x6e\x0b\x9c\x68\x6b\xed\xb6\xb4\x77\x0a\xe4\x3a\x2a\xe0\x74\x97\xb5\xb3\x02\x58\x20\x00\x2c\x6c\x63\x92\xff\xdb\x1d\xfb\x47\x41\x38\x44\x08\x4c\x04\x15\xb0\xc6\x21\x09\xdf\x1b\x64\xff\x1e\xcb\xb6\xe2\x82\x56\xab\xdd\xa9\x56\x82\xdd\x09\x2c\x7b\x7e\x14\xdb\xd9\xc5\x76\x35\xb0\x0d\x2c\x10\xdf\x9c\x25\x59\x3b\x09\x00\xec\xe1\x9f\x5b\x4f\xee\x25\xd6\xe2\xb0\xae\x40\xa5\x4e\x30\x47\xd7\x49\xd6\xd2\xd8\xc9\xb2\x6d\x96\x4e\x5c\xfc\x01\xcb\xf2\x4d\xac\xf9\xc3\x4e\xb6\xdd\x69\x53\x87\x21\x04\x0d\xe3\x0b\xda\x59\x6c\xed\x41\xeb\xfe\xb3\xbf\xb2\xf1\x5f\x0a\x96\x65\x1f\x0b\x60\x59\x6a\x74\x46\x70\x46\x28\xcb\x5a\x4e\x62\x91\x1e\x76\x74\xa7\x2b\x9a\xff\x82\x4b\x58\x96\x3d\x8b\xd5\xd5\xc8\xb2\x9d\x58\xe5\x2c\x74\xb1\xe9\xa3\x85\x6b\xb0\x7f\x3a\x54\xce\x0a\x2a\x6f\xc0\x8a\x79\xdb\xa1\xa4\x76\xc1\x0f\x3b\xd9\x8e\x2e\x6c\xb6\x3a\x4c\x70\x3b\x7b\xa8\x83\xb5\xb0\x5d\x42\xc8\x9d\x62\x81\x68\x1a\x32\xca\xb0\x78\x3b\xe4\xe0\xfe\x92\x60\x98\x3f\x59\x2c\xec\x89\x86\x46\xb6\xb3\xab\xb5\xf5\x14\xfb\xde\x89\x46\xec\xac\xec\x87\x87\x9c\x97\xfd\x65\x88\x80\x59\xf8\x18\x8c\xb7\x2e\xa1\xb5\xed\x42\xd9\x87\x78\xa7\xf5\x03\xdc\x1a\x5c\xde\x61\x39\xd1\xd9\xd6\xde\xc1\x76\x75\x58\x4e\x56\x54\xc0\xc9\x36\xc1\x8b\xff\xfb\x63\x82\xef\x19\x0c\x88\x93\x96\x16\x4b\xa7\x65\xf0\xe8\x44\x43\x67\x43\x4b\xdb\x87\x15\xd0\xd2\x76\xe2\xa3\xc1\xc2\x76\x4b\x87\xa5\x53\xa0\xc3\x1e\x70\x50\xa8\x80\x0e\x1e\x37\xb4\xad\x95\x3d\x69\xed\xf8\xa8\x02\xba\x5a\x87\x5f\xd0\x6d\x69\xb7\x36\xf6\xfc\x9d\x90\x63\x6b\x2b\x6a\x87\x87\x43\xa3\xf5\x24\xdb\x6d\x69\xef\xb0\xb6\xb5\xb2\xa7\x86\x9f\xa8\xad\x80\xda\x9f\x8b\x21\xf6\xe1\x8a\xb5\x2c\x16\xa7\xdd\xfa\x61\x53\x27\x2b\xac\xd3\xc8\x9e\x68\x3b\xc5\x77\x75\x5a\xda\xff\x68\x6d\x3d\xf1\x36\x6b\xae\x7f\xaf\x5e\xa8\xf7\xef\x43\x45\xc5\x89\xa6\xb6\xb6\x0e\x2c\x9b\x85\x6d\x6b\x64\x3b\x9b\x2c\x6c\x63\x5b\x4b\x4b\xdb\x19\x6b\xeb\x87\x6c\x1b\xdf\x69\x6d\x6b\xed\xa8\xa8\x00\xbe\xdd\xd2\xd1\x81\xcd\xc4\x7e\x64\xe9\xc1\xc6\x3b\xd1\xd6\xda\x69\x6d\xed\xb2\xb0\x70\xa2\xa1\xf5\x84\xa5\xa5\xc5\x72\xb2\x02\x1e\x18\xbc\xb1\xdd\x62\xa9\x80\x5b\xb7\xec\xf6\x47\x1d\x83\x8f\x12\xff\x36\xb6\x2f\xaf\xaf\xaf\x8f\x6a\x3e\x0c\x0c\x1c\x26\x18\x42\xcf\xc1\x1e\xe0\x88\x3d\x78\xe7\x05\x60\xc1\x18\x7a\x0b\x78\xf2\x16\xa1\x7f\x13\x18\x7c\x48\xd8\xae\xb2\x60\x73\x47\xcf\xdc\x7e\x13\x6a\x84\x2d\x03\x46\x02\xd7\xd3\xa3\x48\x7c\x44\x68\xc2\x6e\xa3\x51\xb7\x39\xe2\x05\xc0\x7b\xcf\xdc\xc6\x74\x34\x89\xb7\x0f\x03\x4f\x76\x13\xdd\xa0\x67\x21\x8e\x83\xef\x60\x1f\x00\x47\x7c\x47\xec\x23\x60\x6f\xbe\x30\x73\x83\x2d\xc0\x00\x47\x6c\x21\x58\xb0\x5d\xe1\xc6\xa2\xd1\xb7\xb9\x30\x34\xfa\x76\x50\x9d\xaf\x79\x2c\x45\x94\xe7\x8d\x65\xc6\xee\xcd\x0b\x63\xc2\xf4\x75\x5f\xeb\xa5\xb5\x87\x09\xaa\x5f\xf8\x88\xfd\x14\x7f\xc0\x08\xc2\x76\xd6\xb9\xc3\xb7\x09\x3b\x33\x89\x14\xbb\xed\xe4\x83\x5d\xbe\x5e\x5f\x15\xe4\x68\x70\x98\xe3\x63\xac\x5e\xf3\xe1\x25\x11\xef\x83\xfe\x60\xe7\xe4\x36\xa2\xbf\x6c\x66\x95\xa8\xbc\x6c\x41\x33\x65\xe5\x92\xa4\x52\xb7\x99\x56\x54\xe7\x7e\x60\xa6\x8d\xf4\xdc\xc9\x24\x19\x67\xd4\x03\x69\xfd\x8b\x4d\x6c\xad\xe0\x77\x6a\x96\x7f\x57\x0f\x64\x93\x95\xb5\xdd\xd1\xa3\x92\x6f\xb9\x3b\x54\x80\xf5\x55\xfe\xbb\x88\xbb\x94\x94\xbb\x67\x73\xef\xfd\x9e\x27\x7b\xef\xea\x4d\xc0\xdc\x65\xbe\xd7\x0f\x3e\xaf\xd0\xfc\xf2\x3b\xe3\x13\x65\x4b\x99\x25\x12\x03\xf3\xe4\xd1\xfe\xfe\x63\x40\x48\xa5\x52\xa9\xbe\xfa\x89\x03\x4b\xb9\x27\xd5\xdc\x92\x28\x3d\x4a\xb5\x3b\xe6\x40\x68\xef\x2d\xcd\x2f\x6f\x39\x66\x42\xa6\xdb\x38\x4f\x1f\x1b\x2d\x93\xd6\xa6\x2e\x1e\x6b\xf3\x2a\xc3\x69\x5c\x4d\xfd\xa7\xb7\xd4\x7a\x47\x85\x63\x5f\xdc\x52\x73\xa1\xa9\x7a\x83\x01\xc9\xed\xeb\xc6\x82\x79\xec\x1e\xa2\xdc\x3c\x76\x0f\xec\x8d\xc3\x3a\xab\x24\x7b\xc3\xf4\xe4\x5d\xf1\x7e\x9f\xdf\x4e\x78\x67\xe4\xa1\x85\xf5\x8b\x8f\x4f\xb1\x3e\xd5\xce\x5c\xd8\xe0\x36\xbd\x7f\x23\x6e\xd9\x95\x17\x52\xf9\xc0\x6a\xf9\x81\x78\x9e\x28\x6f\xde\x15\x74\x79\x2e\x13\x4f\x11\x4d\x7b\x2f\xcf\xe3\x9f\xad\x9e\x52\xbf\x00\x76\xcf\x2d\xa7\xee\xa0\x31\xf7\xf1\x1f\x7f\x07\x65\xde\x35\xce\x63\xe6\x6a\xf6\x7c\x87\xde\xb7\x57\xcf\x40\x7f\xb0\x1b\x67\xb0\xa3\xca\x63\x17\xf5\xb4\xd8\xf9\x3b\xc7\x47\xf0\xfd\xdc\x54\x16\x1a\x67\x20\xf8\x41\xb3\xe7\x3b\x6e\x01\x7a\xf5\x4e\xed\x31\xf8\xde\x92\xc0\x07\x1c\x3b\x7e\xd7\x92\xc8\x7b\x73\x49\xd5\x93\x8f\xef\xb7\x95\x5b\x26\xdb\x7e\xd7\xb8\x80\xff\xb8\x37\xa9\x71\xa6\xad\xbb\x7a\xc6\xde\x5a\x94\x7a\xd7\x74\x11\x5d\x1d\x40\x73\xed\xa6\x37\x99\xe9\x68\xcd\x00\xfa\xd0\x7e\x10\x48\x2b\x6b\x0b\x68\xb2\x56\xdb\x7e\x59\x8e\xfe\x60\xb7\xfe\x1b\xdf\xb5\xcb\xd6\x8e\x8a\x7e\x30\x89\x98\x05\x68\xc6\x2d\xe9\x95\xf7\xad\x1f\x54\x36\x48\xa5\x55\x62\x69\x64\x42\x64\x62\x33\x75\xa7\x71\x81\xed\x5b\xea\x8b\x2a\x37\x34\xe3\x96\x71\xc6\x85\x3f\xdd\xe5\x03\xd0\x8c\x5b\x17\x8e\xde\xb5\xf9\x1c\x3b\x7a\xd7\xe6\x61\xad\xb6\x89\xaa\x67\x04\x95\x47\x26\x3d\xea\xf8\x73\xc1\x05\x17\x5c\x70\xc1\x05\x17\x5c\x70\xc1\x05\x17\x5c\xf8\xef\xc2\x48\xf0\x1f\xf9\xa8\xdb\xf0\x28\x71\x18\x9d\x42\xdc\x14\x74\x0c\x71\x4a\xbc\x59\x84\x37\x53\x54\x4a\xd5\x22\x75\xaa\x5b\xaa\xf3\xa5\xba\x9e\xb5\xa8\x05\x99\x2e\xa2\x53\xc8\x54\x8b\x37\x5f\xe1\x8d\x1d\x9d\x42\x2c\x69\x4c\x66\x0f\xf2\xee\xe5\x36\x1f\xb5\xe1\xc1\x4b\x77\xeb\x6c\x8d\xc9\xfc\x8d\xea\x85\x41\x11\xe0\x78\x28\xc1\x2d\xca\x97\x32\x8b\xae\x78\xdb\xa4\x75\x44\x0c\xb3\xc8\x64\xd7\x7c\x15\xa6\x36\x54\x2f\x74\x3e\x0f\x99\x56\xae\x36\xe0\x7f\xe5\xfc\x6d\x94\x37\xa6\x4e\xcc\x3d\x6e\x93\x56\x2f\x2c\x3f\x4e\x55\x06\x69\x0e\x85\xf5\x2a\x39\xa5\x75\x7c\x9d\xbf\x14\x8d\x0d\xae\x5e\xd8\xd4\x64\x5c\xa8\x39\x14\x66\x52\x68\xe6\x84\x69\x66\x87\x0d\x6b\x64\x03\x78\xd6\x7e\xa9\x36\x7c\xe9\x7c\xf1\x2f\xe5\x37\x82\x18\x21\x92\x05\x12\x7e\x32\x7f\x6a\x8c\xe7\x28\x6a\x2c\x01\xa4\x1f\x45\x51\xfe\x63\xa9\x40\xb7\x91\xd4\x58\xff\x50\x7f\x1f\x82\xf4\x9f\x2d\xbc\x51\x76\x8a\x86\x0d\xfb\xbb\x6f\xbe\x3d\xcf\xba\x71\x8f\x9f\x56\xf3\x7b\xa2\x2a\x83\xd0\xc0\x68\x49\xdd\x2b\x51\xa8\x61\xcc\x8f\xde\x78\xbb\x76\xf4\x4f\xde\x78\xbb\x3c\x4c\x78\xe3\xed\x64\x44\x87\x3d\xfc\xc6\xdb\xc9\x0f\xbd\xf1\x76\x6c\xf0\x8f\xdf\x78\x4b\x87\xfd\xe8\x8d\xb7\xa6\x9d\x15\x45\x62\x13\x30\x4a\x34\x36\xd8\x54\xcb\xa4\xb2\x3a\xe3\x42\xd3\x44\x66\x91\x43\x79\x83\xef\x57\x8e\x80\x72\x9b\x4c\xb0\xc1\x97\x4e\x0d\xd4\x5d\x6b\x5c\xc4\xdb\xaa\x17\x7e\xf9\x25\xef\x8e\xb5\xdb\x00\xce\x13\x8e\x77\x2f\xb7\x38\x6d\xf9\xa8\xfd\xcf\x05\x17\x5c\x70\xc1\x05\x17\x5c\x70\xc1\x05\x17\x5c\x70\xc1\x05\x17\x5c\x70\xc1\x05\x17\x5c\x70\xc1\x05\x17\x5c\x70\xc1\x05\x17\x5c\x70\xc1\x05\x17\x5c\x70\xc1\x05\x17\x5c\x70\xc1\x05\x17\x5c\x70\xc1\x05\x17\x5c\x70\xc1\x05\x17\x5c\x70\xc1\x05\x17\x5c\x70\xc1\x05\x17\x5c\x70\xc1\x05\x17\x5c\x70\xc1\x05\x17\x06\xb1\x34\x97\x2e\xa6\x53\x00\xc4\xb1\x10\x88\x14\x8a\xa7\x73\xb7\x16\xd3\x2b\xb6\xcb\xd3\x46\x03\x04\x7a\x3a\xeb\x14\x95\xd0\xb4\x7c\xe9\xb8\xa8\x95\x30\x09\x09\x05\xfe\xea\x6c\x9a\x2e\xa0\x8b\x4b\x0b\x4b\x0b\xe6\x94\x8c\x77\x56\x13\x13\x3a\x7a\x08\x99\xe3\x69\xb9\x37\x99\x00\x4a\x31\x20\x10\xa5\x00\x48\x1c\xb5\x50\xb2\x26\xa4\x90\xa6\x07\xf9\x97\xcc\xa6\x69\x5a\x4e\xe2\xb3\x93\x00\xfc\xc5\x10\x4b\x3f\xbe\x7d\x7b\xe1\x0a\xb5\x94\x20\x40\x01\xf8\x32\xd2\x40\xd3\x25\x04\xa8\x80\x00\xf0\x10\x48\xa4\xce\x8f\xd4\xae\x91\xfb\x68\xbd\xd7\x8d\xa0\xb7\x8f\x37\x10\x83\xc4\x74\x45\x0e\xde\x53\x52\xf5\x00\x14\x2e\xa1\xfc\x00\x60\x92\x22\x0a\xc6\x81\x02\x28\x4c\x8c\x4a\x0a\x5d\x41\x0f\xf1\xc7\xd5\x73\xe9\x29\x04\x48\x20\x69\xb4\x44\x32\x63\x4e\x16\x1d\xbf\x39\x2b\x48\x06\x45\x72\x67\x0d\xa4\x1e\x14\x49\x2e\xc8\xa0\x5e\x0f\xe8\xb9\xa7\x62\x8a\x17\x2a\x68\x3a\xab\x64\x76\x7c\x89\x7c\x14\x90\x0a\x20\x41\x1c\xb7\xc3\x59\xcd\xc1\x1b\x83\xd4\x2f\xf6\x91\x7b\x66\x3d\x3b\x1e\x17\x21\x00\x12\x13\x7c\xbe\xa0\x74\x88\x7f\x21\xbe\xc4\x43\x02\xb0\x91\x1c\xeb\x0f\x68\xf5\x86\x52\xba\x30\x77\xfd\x8a\x00\xef\xed\x61\x83\x34\x68\xba\xa0\x80\xce\xa5\xe9\xe2\xec\x0c\x41\xff\x94\x22\x64\xd6\xda\xec\x71\x88\xa6\x67\x96\xd0\x85\xf2\x60\x5f\x00\x89\x04\x80\x42\x1b\x9c\x0d\x95\x39\x35\x42\x88\x41\x0c\x14\xf8\x0f\xb5\x47\xc0\xb3\xc5\x25\xc3\xe5\xc7\x2d\x98\x88\x6b\x2b\xc2\x08\x24\x29\xa5\x33\x09\x00\x7d\x69\x61\x9e\x42\x21\x52\x00\x50\xcf\x0d\xd9\x54\x16\x2b\x5c\x23\x89\x1c\x2f\x8a\x9c\x1e\xb0\xaa\x24\x94\x4a\x72\x03\xa0\x08\x61\x15\x11\x05\x94\x0a\xd2\x8f\x1f\xc6\x69\xc7\x53\x39\x8f\x2f\x73\x03\xb4\xaa\x78\xe9\x94\xb0\x07\xa5\x28\xe5\xb9\x21\xfe\x72\x3a\x9e\x2e\xa4\x47\xe1\xe2\x10\x31\x10\x13\xb6\x17\x6e\x2a\xf4\x11\xc3\x0c\x5a\xe6\xf0\x35\x85\xb2\x84\xa6\x0b\x8b\x05\xfe\x33\x43\x04\xc1\x02\xd1\xb6\xc2\xf9\x25\xcf\xcc\x2d\xcd\xf5\x59\xb9\x66\x6b\x61\xfa\x38\xa1\xa2\x3b\x99\xb5\x5d\xb0\xa6\x93\xb2\x20\x73\x51\xf8\xc6\xa7\xe8\xa5\xb4\x3c\x5b\xba\xc0\xe1\xa3\x40\x49\x91\xc2\xf0\xb0\xfd\x1d\x46\xa3\xa6\x21\x42\x8c\xc4\xb8\x70\x33\x4d\xd3\x61\x63\x00\xc0\x57\xb1\x9c\x1e\x0e\x11\x00\x84\x83\x82\x02\x11\x20\x58\xb4\x6c\xc1\x53\x9b\x3c\x0d\x7e\x0e\x47\xc3\xde\x45\xd3\xb4\x1f\xf2\xc2\xaa\x50\x90\xd8\xd4\x86\x25\x9b\x8a\x37\x45\x2f\x95\xcd\x9a\xb2\x4e\xbe\x25\x75\xa4\x18\xc0\x61\x98\x1d\xc3\xf8\x87\x61\xcb\xd2\xb4\x9f\x04\x80\xd8\xe8\xe1\x30\x38\x3c\x81\x8b\xbc\x3c\x3c\x41\x3c\x12\xcb\x24\x1f\x6c\x24\x22\x10\xa6\xe0\x29\x51\x40\x11\x5a\x59\x44\xfb\xe1\xe6\x2a\x26\x01\x05\x62\x20\xc7\x09\x75\x82\x05\x02\x10\xae\xc7\x67\x22\x8a\xb7\xba\x8b\x15\x84\x18\x36\x3e\x97\x13\xef\xe0\xad\xc6\xed\x5a\x53\x32\xc8\x3f\xb7\x00\xbb\x1f\xde\x8b\xd0\xf9\x10\xd4\xd3\x93\x69\x79\x01\x3d\x45\x5b\x10\x2e\xd6\x4b\x48\x87\xb5\x1d\x76\x0d\x1f\xb7\x35\x16\x10\x09\xde\x14\x28\x14\x71\xda\x69\x33\x57\x2d\xa0\xe9\xd8\xa2\xe2\x5c\x0f\x29\x81\xf5\x2a\x28\x2e\x77\x48\x55\x4f\x8b\xe9\x44\xcc\x91\x0a\x49\x82\x61\x01\x01\x12\x71\xa6\x7c\x98\xfc\x25\x74\x71\x09\x5d\xe2\xe3\x07\xb0\x44\x81\xab\x13\x3b\x4a\xe4\x74\xa9\xbc\x64\xa2\xdb\x68\x7c\xa8\x20\x01\xa8\xe5\x85\x34\x2d\x01\x11\x76\x7c\x10\xa2\x28\x29\x76\xed\xfa\x92\x35\x1b\xb2\x37\xd1\x53\x8a\xe9\x79\xab\x08\x87\x5a\x11\x48\x76\x38\x99\x7b\xf8\x88\x9c\x11\x40\x42\xa0\x83\x2d\x12\x6a\x20\x89\xbf\x68\xcb\xe6\x61\xf1\x5f\x4c\x63\xe9\xe4\x49\x00\xe2\x90\x5c\x09\xc4\x69\x96\x15\x16\x3f\x2f\x9f\x9e\x23\x2e\xd2\x0a\x5d\x1a\x01\xc8\xe1\x23\x85\x34\x9d\xbb\xcc\x1b\x5f\xe2\xa6\x98\x5a\x3a\xaf\x84\x2e\x5e\xb8\x35\x6c\x07\xbd\x66\xfd\xbc\xf8\xa9\x40\x29\x48\x44\x42\x56\x8e\x50\x53\x2b\x1e\x0a\x00\x52\xb2\x46\xbb\x66\xcd\x9a\x67\x47\x88\x88\xa1\x42\xf5\xfa\x1f\xfb\x1f\x6e\x2d\x9a\xf1\x18\xf6\xed\xb9\x74\x6e\x31\x3d\x22\xdd\x9d\x7c\x6e\x94\x93\x44\x52\x29\x4d\x6f\xa0\xe9\x12\x9a\x7e\xd6\xd3\x41\x45\xb1\x39\x7a\xdd\xf6\xf1\x79\xb9\xf4\xaa\xd2\x67\x72\x9f\x0d\xf7\x71\x78\xb6\x58\xb1\x43\xe8\xcc\x04\x1f\x70\xb2\x53\x82\xce\xdd\x3d\x3a\x9c\x50\x0c\x6b\x13\xb1\x7a\x98\xfc\xf2\x67\x8b\xe5\x8e\x3e\x8b\x00\x45\x18\xee\x86\xbc\xc6\xc9\x28\xd8\x48\x4f\x09\x48\xc5\xfd\x00\x12\x6f\x1e\xb2\xa9\x1c\x05\x38\x22\x1d\x02\xc0\x5d\xac\xd8\x1e\xb6\xc6\x4f\x68\x21\x21\xc6\x16\x96\x08\xe1\x47\x13\xa4\xa3\x9b\xc3\x15\xf5\x05\xf2\x59\x5b\x01\x41\x2c\x2d\xf3\xc0\xe2\x38\x5b\xb5\x7d\xf1\x90\xfc\x4b\xd6\x97\x60\x83\xb9\x2b\x00\xe6\x89\x81\xf0\xa3\x76\x68\xc7\x05\xa5\x79\xaa\x69\x1f\x81\x93\x42\xa1\x28\xa5\x05\x1b\xe1\x7e\xdd\x87\x00\x42\x01\x92\x59\x0b\xb7\xfb\xcd\x89\x08\x28\xa1\x9f\x2d\xa4\x97\x46\x27\xfb\x61\x27\x55\xf8\x4d\xa2\xb7\x09\xf1\x3f\x4c\xd3\x10\x55\x88\xc7\x2e\x6c\xe4\x30\xc2\xd9\x2b\x10\x80\xc3\xeb\x27\xf1\x1f\x4f\x01\xa5\x74\xb8\xa9\xa0\xc7\x82\xc8\x40\x88\x13\xa3\x07\xb2\x3f\x25\x68\x69\x9c\x30\xa0\x80\x62\x8a\xc4\x9d\x94\xaf\xc8\x5d\xe7\x95\x08\x3e\x4e\x4a\x08\xf0\xf0\x47\x06\x2e\x04\x10\x53\xd8\x6d\x00\xe0\xf9\x51\xfe\x69\xdb\x4b\xd4\xc5\xb2\x89\xc5\xdb\x36\xcd\x1c\x1c\x03\xc9\xf0\x1f\xf1\xcf\xa5\x69\x0f\x85\xfb\x74\x30\x24\x43\x2c\xb8\x91\x42\x03\xe9\x78\xb9\xbf\xc4\xd3\x3b\x6c\x91\xb3\x7d\x82\xfc\x01\x54\x1c\x89\xbb\x1f\x31\x40\x91\xc8\xb7\xa8\xd8\x4f\x8a\x5d\x3b\x10\x40\x0d\x0a\xbd\x98\x5e\x43\xd3\x93\xa7\x39\x44\x48\xc2\xce\x14\x3b\xeb\xa9\x1c\x07\x53\xf4\x58\xce\x46\x2f\x70\x04\xa9\x02\xb2\x36\x14\x0d\xe7\x2f\xcf\x73\xf8\x05\x25\xa6\xf4\x33\xb0\xa7\xe7\x16\x16\x48\x29\x85\x64\xb0\x3e\x56\x87\x76\x83\x4f\x9c\xa7\xda\x21\x95\x42\x01\x09\xcf\x94\xae\xf3\x2b\xc9\xdd\xb6\xbc\x54\x3e\xd1\x20\x16\x78\x20\x72\x48\x9b\x34\x2d\x27\x3c\xd3\x7c\x9d\xce\x82\x6d\xe6\x3e\x68\x7b\x40\xab\xc3\x8a\x1f\x92\x3f\x97\x7e\x0a\x77\x55\xe1\xa9\xd8\x36\x63\xe4\x39\x82\x3e\x26\x4a\xc5\xa4\xd3\x8b\x08\xac\x0d\xcf\xc5\x24\xa8\x01\x79\x28\x84\x6e\x4d\xbf\x71\xb9\x5c\xbe\x6e\xb9\xce\x40\x4f\xa7\x67\x3b\xe2\x44\x50\xed\x60\xfc\x17\x64\x05\x3d\xb0\x0a\x02\x98\x24\x86\x24\x47\x1b\x41\x42\xae\xa1\x8b\x7f\x34\xfe\x97\x38\x02\x70\x6d\xae\x5b\x84\x3e\x22\x4f\x1b\x12\xbf\x41\x11\x04\xdb\x0b\x48\x87\xc3\xa2\x58\x9a\x96\x3b\x1c\x30\x55\x4a\x8a\x21\x2a\x18\x0c\x01\xa5\x61\x05\x85\x33\xe8\x5c\xf9\xb2\xd2\xdc\xb1\x1b\xb1\xaa\x25\x33\x94\xb0\xd0\x31\x4a\xc9\x1e\x8c\xf4\x00\xe4\xf6\xec\xd2\xfc\x1d\x79\xb3\x73\xc7\x3a\xf9\x89\x25\x00\x7a\x7a\xd8\xf8\x3f\x8f\x2e\x29\xa0\x27\x7a\x52\x00\xa1\xab\xdc\x24\xe2\xd5\xda\x39\xf1\x9b\x73\x0b\x1e\x17\xc1\x76\x99\x23\x66\x15\x5e\xab\xb1\xf5\x0b\xe8\x52\xf9\x68\xa1\x40\x2f\x51\x8d\x33\xd0\x53\xd3\xa4\xc1\xf4\xb3\x4b\x0b\x4b\x4b\x09\x7f\xcc\x88\x82\x71\x33\x76\x68\x1d\xe2\x13\x83\xd1\xae\x00\x72\x1c\xe4\x2b\xfc\x97\xa9\x87\xc5\x04\x2c\x2b\xde\xf6\xa0\xff\x0f\x2b\xd6\xd2\x05\xb4\x3c\x17\xeb\x95\x9a\x05\x08\x92\x82\x49\x82\x84\x8d\xf4\x6c\x34\x4f\x84\x09\x48\x8a\x04\x05\x39\xba\x55\x3f\x41\x2a\xa4\x93\x88\x26\x20\xb7\xf0\x12\x39\x25\xf6\x04\x90\xcc\x95\x28\x71\x02\x92\xe0\x88\x7f\x72\x90\xb4\x12\x20\x6a\xfd\xd8\x02\x2d\x20\x30\x94\x94\x3c\x3b\xdb\x59\x4c\x4a\x62\xc5\x93\x1f\xc8\x9f\x5f\x28\x78\xb6\x87\x98\x94\xac\x5e\x4d\x28\xc0\x3f\x7b\x05\xfd\xfc\x04\x77\x45\x11\xad\x74\x8a\x30\xad\x34\x97\x2e\x10\x2a\xc9\x1f\x0b\x71\x58\x54\xbd\x50\xbe\xd8\x5f\xb9\x85\x2e\x95\x27\x65\x6e\x11\x4f\x5d\x8c\x93\x9c\x91\x62\xc5\x84\x12\xdc\x53\xc8\x87\x75\x75\x0a\xf7\x25\xeb\x0a\x36\xa4\xc7\x16\xaf\x2f\xd6\x10\x0a\x87\x37\xe9\x49\x49\xce\x4f\xe3\x9f\x5e\x00\x4e\x77\x97\x88\xe3\xb0\xb5\x67\x6f\x13\x51\x60\xf0\x19\x4c\xa9\xb6\x08\x3a\x10\x13\x3a\xec\x13\x54\xf8\x1c\x7a\x0c\x92\xcf\x2e\x2d\x90\x8f\x27\xc6\xe0\x5c\x40\x70\xee\xa7\xb1\xea\x15\xa3\x87\xfa\x39\xea\xc9\x55\x05\x6b\x26\xc4\xeb\xe6\xd3\x5b\x72\xe4\x72\x3c\x78\xb8\xe1\xd2\x71\x86\xc2\x9f\xf0\xd7\x2a\x14\x14\xcc\x08\x73\x18\x4d\x21\xb8\xdb\x53\x13\xf4\x3a\xd8\xb1\x75\x78\xfe\x31\x7d\xd0\xaf\x14\x30\x2e\x7c\x7b\x1c\xed\x85\x8f\x84\x1e\x09\x73\xc4\x57\x6d\x72\x1f\xb4\x3c\x76\xdd\x95\xe1\x93\x9d\x62\x6f\xa4\xe7\xf8\x3b\xda\x84\x28\xd0\xd1\xdb\x07\xf9\xc7\x0b\x74\xf1\xde\x06\x91\x1b\x80\xba\xb4\x78\x73\x2e\x3d\xdb\x27\x32\xdc\x6d\xa3\xc2\x99\xb1\x63\xba\x39\xf2\x9c\x51\xb3\xc6\x22\xa7\x0f\x47\x79\x27\x96\x3e\xb9\x6c\x79\x31\x3d\xaf\x94\x5e\xba\x78\xa1\x73\xac\x05\x82\x1a\x16\xff\x4b\x41\x4c\x08\x2a\x45\x48\xa1\x70\xaa\xd6\x81\xac\xf5\xc3\xe3\x2f\xb7\x90\xa6\xa7\x78\x02\x20\x89\x58\xaa\x00\x58\x4e\x87\x95\xd2\x79\x74\xc9\xe6\x07\xd5\x09\xe9\xda\x62\x9a\x26\xf4\x62\x52\x02\xb1\x02\x4d\x20\x23\xd7\xcf\x92\xe7\xea\xc6\xc5\xe9\x4a\xe4\x2b\x8a\x37\x39\x9a\x15\x0e\xa0\x1e\xd6\x57\x86\x01\xee\x28\x81\x58\x0c\x20\xa2\x12\x9c\x29\x08\x8a\x03\x42\x51\x3a\x7b\xd3\x10\xff\xc2\x61\x03\x70\x18\x40\xc4\xa2\x0d\xb9\x53\x67\xfa\xe6\x2e\x82\x07\xe9\x37\xac\x1c\x24\x29\xcf\xc2\x33\x22\xbd\x2f\x42\xd3\x4b\xb6\xca\xbd\xe7\x6e\xf7\xc8\xcf\x5d\x43\xaf\x88\xf7\x27\x01\x74\x0a\x40\x29\x5b\x87\xc5\xbf\x23\x0d\x83\xa9\xcb\x67\x2d\xd8\x32\x76\xfd\xa2\x18\x18\xa6\x83\x61\xf2\xe7\xe2\xfc\x07\xe7\xcc\x84\x30\x3d\x79\x42\x37\x2b\x2f\xbd\x90\x5e\x5a\x84\x48\xda\x31\xfd\x12\xe3\x1c\x89\x9e\x28\x74\x8a\xab\x05\x92\x3a\x00\x7d\x46\xf1\x76\x79\x32\x4d\xcf\xde\x91\xf6\xd4\xbc\x71\xee\x38\x4b\x26\x45\xa0\x76\x0a\x23\x1f\x64\x0e\x40\xf8\x13\xd1\x24\x25\x76\x93\x90\xd4\xa0\x57\x4a\xa8\x1d\x6b\xe9\x07\xf1\x5f\xe0\xe8\xd9\x56\x08\x07\x1a\x00\x2a\x36\x43\x2f\x74\xa4\x8b\x36\x7b\x4b\x62\x41\x41\x12\xf4\x50\x02\x3a\x94\xc2\x93\x6a\x8f\x91\xab\x76\xd0\x24\x1a\x66\x57\x87\x2e\x0b\x24\xc3\x4a\x42\x9e\x7a\x62\x69\x18\x90\x0a\xc5\xd6\xc7\x43\x47\xc1\x03\x15\x3c\x99\x3f\x2c\xff\xcb\x5d\x3a\x98\x81\x16\xb9\x03\x88\xf3\xd7\xad\x9f\x9c\x4b\x50\x45\x72\x4a\x94\xe4\x8d\x7b\x0b\xe5\x8e\x07\x4e\x35\xc3\x91\x1f\x2b\x4a\x03\x54\xf9\x54\xca\x0a\xba\x20\xc2\x60\x18\x1d\x16\x24\x2c\xe4\x4e\x52\x9a\xf1\x42\xb2\x1e\x16\x31\x48\x5b\x0c\xd4\xaa\x95\x73\xa7\x8c\x1c\xbd\x63\x47\x71\x71\xf1\xa0\x36\x81\x8a\x7a\xb2\xf8\xa7\xf1\xbf\x55\x42\x8a\xf1\x59\x12\x81\x1e\x1f\x3f\xb6\x4e\xec\xfd\x74\x44\x56\xf1\xf0\xf0\xa3\x09\x4a\x4c\x24\x02\xa0\x84\xd2\x15\xb3\x0d\xf4\xb3\xf2\xe2\x6d\x4b\x09\x08\xa7\x84\xfc\x1b\x50\x04\x1e\x22\xd2\xc2\x22\x05\xc2\x4a\xac\x87\x71\xc9\x9b\x42\xc7\x17\xcc\x51\x15\xc7\x6f\xd9\x9a\x23\x02\xa7\x63\x50\xea\xd2\x9f\xf0\x2f\xc4\x9e\x35\x75\x5e\xa0\xd0\x42\xa1\x01\x74\x14\x8c\x1c\xa9\xdf\x5e\x32\x8c\xbd\x3c\xcd\x71\xbd\x40\x27\x70\x5c\x80\x87\x0c\x67\xc4\x12\x7f\x67\x9f\x80\xab\x16\xba\x53\x8e\xf9\x07\xee\x6d\xf4\xa2\x40\x35\x81\x67\xbe\x40\xad\x2e\x58\xe8\xcc\x27\x29\x0a\xb6\xc9\x8b\x87\xe2\x8f\xa6\xe9\x35\x38\x8d\x18\x9d\x16\x4e\x2a\xa6\x3d\x15\x46\x17\x16\x4c\x5f\xba\x6d\x25\xb5\x23\x40\x20\x2b\x01\x6a\x07\x4d\xe7\x86\x6d\x57\x6c\x5d\x9c\xe4\x2d\x14\x51\x84\x22\xaf\x78\xfa\xba\x3c\x5a\x26\x2e\xa5\x9f\x5d\x90\x81\xc7\x09\x31\x6e\x89\xde\x91\xa8\xe5\xd2\x74\x89\x8c\x20\x41\x2f\xb8\xb4\x30\xf0\x7a\x0e\x9b\x01\x2c\xd9\xba\xee\x47\xfd\xef\x52\xf7\x00\x34\x21\x16\x48\x20\x60\x7d\x01\x5d\x50\x58\x9a\x13\x93\x34\xd8\x8b\x8a\x85\xfe\x27\x57\xa4\x96\x82\x04\x06\x25\xcd\x88\xdb\x5e\x4c\x27\xb8\xcf\x55\xd3\xf4\x14\xda\x6f\x28\xe1\x1b\x72\x15\x3a\x4c\x45\x0d\x4d\x3b\x08\x70\xe4\x03\x14\x80\xf7\xc8\x55\xf4\x8f\xc6\x7f\xe7\x70\x2c\x59\x05\x20\x71\x5f\x5b\xb0\x82\x5e\xb1\x18\x60\xf3\x28\xa7\x6b\xcf\x30\xd0\x74\xae\x23\xfe\x67\x8e\x10\x66\x5f\x53\x41\xbf\x71\x13\x9d\x13\x58\x5a\x30\xbb\xf8\xb1\x69\xa5\x5a\x25\x21\x68\xd5\x69\x36\xda\x1d\x09\x9c\x90\xc0\x77\xcc\x9c\xf9\x25\x05\x2b\xe9\xc7\x8a\x1e\x78\x1f\x00\xda\xf1\x10\xff\xd2\xc1\x88\x8d\x02\x18\xa3\x50\x2f\x2f\xdc\x5e\x3a\x6b\x7c\x84\xa2\x54\x36\x58\xa7\x74\x50\x26\x10\x66\x7f\x32\x80\xd1\xd9\x61\x31\x05\xe2\x82\xd2\x5c\x5a\x9b\x4b\xe7\xb9\x61\x15\x3f\x2d\x41\xba\x92\x1f\x87\x29\x50\x63\xd0\x42\x6f\x4a\x22\xa3\xc8\x21\x25\x91\x45\xc3\xe4\xdf\x5e\x5a\x42\xe3\x84\x48\x82\x14\x00\xf1\x00\xea\x85\x62\x3c\x55\x29\xa5\x9f\xa1\x49\x6f\x21\x65\xc2\xda\x77\x0e\x42\x61\x12\x87\xfb\x62\xb5\x52\x64\xc2\xd6\x5c\xca\x1d\x93\x1d\xe7\x4c\x94\xb6\x38\x7b\x3f\xc1\x44\x20\x4e\x22\x60\x4d\x4e\xdc\x4a\x61\x74\xc8\x79\x3e\xef\x09\x67\x0b\x14\xa4\x24\x53\x39\x24\xff\x14\x41\xb7\xa1\x0a\x37\x80\x8d\x13\xb1\xb0\xf2\x45\x11\x0a\x7f\x28\xa2\x29\x10\xbb\x8b\x81\x42\xc8\x61\x21\x8c\x78\x47\xfa\x01\x71\x3e\x6a\xd8\x04\xcf\xd2\xb2\xd5\x09\x0b\x03\xb7\xaf\x20\x85\x94\x54\x8c\x90\x10\xac\xf1\x43\xd2\x83\x62\x64\xc2\x12\xa5\x98\x5c\x49\x97\xd2\xab\x3c\x60\xa8\x5f\xd8\xfa\xd3\xf8\xa7\x09\xbd\x24\x48\x82\x28\x6f\x85\x38\x0e\xb7\xc8\x6d\x04\x24\xc8\xf4\x8a\x07\xa7\x05\xda\x9e\x12\x80\x70\x82\x1a\x07\x39\x53\xc0\x30\xa5\xa0\x70\xe9\x53\xb3\x3d\x12\x60\x30\xb9\xc2\xf3\x2a\xd5\xba\x25\x84\xe0\xf1\xd8\xf5\x37\x05\xe5\x3c\x47\x3f\xa6\xdd\x1a\x57\xfa\x24\x4d\x87\x3e\x36\x68\x02\x05\x95\x53\xf2\x63\xdb\xca\x85\x64\x2b\x55\x70\x53\xf1\x46\xa1\x64\x31\x10\x92\xa0\x1d\x0f\xf5\x3f\x20\x93\x10\x0f\x0c\x99\xb8\xb6\x44\x46\x82\x4e\x4c\x10\x8e\x2e\x17\xc7\xe9\xa0\xfa\x41\xa1\x40\x00\x21\x7e\xb9\x25\x38\x07\x04\x94\xbe\x5c\x2e\xe8\x9f\xc2\x19\x08\x4a\x2f\xdd\x36\x5c\x7e\xf9\x63\x58\x83\x48\x37\x0a\xc4\xe2\x55\xaa\x62\xba\xa4\x60\xc7\x1c\x02\x9e\x1b\x9c\xd8\xac\x2e\xa5\xe9\xed\xb9\x25\x1b\xb4\xfe\xe3\x9c\x0e\x04\x6a\x59\xcc\xbc\xe8\x25\xb9\xf2\x82\xb0\x6c\x7a\xf6\x08\x09\x80\x24\x1a\x27\xef\xcb\x0b\xe8\x02\x81\xa0\x5c\xec\xd4\x36\x02\x91\xc2\x13\x6b\x9c\x0c\x72\xaa\x1e\x14\x8a\xb4\x1f\xc7\x1f\x76\x58\xca\x40\x00\x04\xc6\x3e\x5b\xba\x81\x5e\x20\xa7\x8b\xb7\x40\x10\xe5\x08\x40\x12\x6d\x16\x6e\x50\x79\x82\x18\x4f\xe2\xc5\x00\xb1\x3a\xcd\x06\x7a\x5b\x21\x90\x12\x7d\x09\x5d\x3a\x3e\xc0\x0d\x06\xef\x30\x0c\xd3\x96\x7c\x72\x29\xf6\x49\x84\xdb\xe0\x06\x9e\x0f\x8c\x3f\xc1\x20\xdc\x26\x1b\x3c\x2c\x70\x24\xf7\x82\x93\xfa\x78\x80\x78\x4c\xce\x98\xf5\xc5\x05\x25\x12\x28\x9d\x47\x3a\xee\x76\x41\xd1\x03\xff\x5b\x3f\x1e\x8b\x24\xd1\x45\xe4\xaf\x29\x99\x97\x91\x4b\xcb\x27\x6f\x5b\x3c\x4f\x3a\x01\xcb\x2a\x76\x07\xc9\xda\x4c\xa1\x96\x08\x88\xa1\x3b\x1e\x0b\xe8\x6d\x85\x9b\xe8\x45\x25\x11\x94\xd0\x16\xc7\xfd\xa3\x87\xe4\xc7\xa3\x66\xae\x18\x08\xdd\xd3\x7e\x00\xc4\xcc\xd2\x39\xd9\x93\x73\xa7\x4c\x9f\x44\xd1\xbe\x4e\x6d\x7b\x0f\x0e\x01\x85\xf9\xc2\xed\x43\x2f\x05\xa9\xdf\x91\xbf\x29\x5e\x44\x4f\x29\xa5\x73\x4a\xe8\xd1\x81\x42\x7e\xe5\xe6\xf6\x9c\xb3\xa2\x87\xf2\x81\xb4\x9e\x88\xa0\xc9\xd5\x2b\x56\x2b\x87\x05\x05\x14\xd1\x05\x85\x0f\xf8\x17\xd2\x85\x85\x42\x07\xa4\x07\x98\x81\x1d\x47\xb8\xed\x52\x4a\x6f\x2f\x4c\xf3\x15\x03\x09\xcf\x3d\x90\x9e\xa6\xc3\x88\x67\x70\x0b\x48\xa5\x63\x70\x2d\xcd\x8d\x24\x08\x24\x02\x22\x86\x24\x08\x50\x0a\xb1\x52\x38\xe8\x80\xc8\x1b\x40\x9f\xfe\xcc\x93\x21\x68\xcc\x38\x40\xdb\xe5\x79\xdb\x9d\x8e\x1b\x45\xb8\x3d\x41\x6e\x1f\x92\x5f\xb8\x67\xe4\x8b\xf5\x55\xe4\x01\x92\xec\x05\x9b\x83\x71\xcf\xbb\x43\x2e\x16\x6e\x2a\x51\xe3\x62\x71\xec\x39\x24\x7b\xce\x71\x4d\x10\x8c\x8f\x19\x91\x94\xb3\xb6\x24\x4c\xbe\xd2\xdd\x30\x63\x35\x8a\x25\x40\x41\xa9\x15\x9b\x8b\x7f\xd4\xfb\x01\x40\xe6\xd2\x62\xb7\x88\x31\x93\x57\x3c\xb6\x61\xb0\x61\x92\x58\x35\x55\xf2\xd3\xf8\xd7\x7a\x20\xf0\x23\xc7\x91\xde\x49\xea\x95\xb8\xcb\xd3\x07\x51\xde\x7e\xe2\x98\xc1\xd3\xf1\x42\x16\x24\x82\x04\x48\x22\x40\x61\xa0\xb7\x45\x6d\x2c\x0d\x7b\xb2\x90\x9e\x8d\xad\x2d\x56\x08\x0a\xc9\xa2\x69\x3a\x7c\xdd\x6c\x20\x21\xd6\xe1\xed\xde\x53\xe3\xe9\xd2\xe0\x29\xe1\x19\x58\xc6\xb0\x71\x8e\x4c\x5c\x0a\xa0\xfb\x29\x7f\x19\x41\x08\x2e\xa3\xc4\x5b\xe1\x3e\x7a\x2e\x44\x01\x28\x1e\xca\x3f\xc2\xdc\x88\x90\xa4\x07\xf1\x1f\x5b\x5a\x4c\x80\xc4\xcd\x53\x2a\x38\xb7\x58\x02\x33\x68\x9a\x7e\x5a\xe2\x88\x1a\xc1\xfd\xe6\xa2\x1d\x8e\x69\xcd\xd4\xb5\xcf\xd2\xa5\xce\x7c\x92\x20\xe2\x76\x14\x96\x0e\xe3\x5f\x28\xe4\xdf\x30\x29\xc9\x1f\x50\x44\x49\xa9\x9c\x5e\x90\xbb\xae\xd8\x93\x44\x0b\xc1\x19\xb2\xdb\x1c\xbd\x5f\xae\x3f\xe9\x48\xbf\x81\x1c\xfd\x44\x09\x1d\xee\x57\x58\x9a\x52\x50\x5c\xb0\x09\x46\x00\x38\xf2\xd7\x8d\x05\x83\xc1\x57\x34\xd8\x4a\xb1\x70\x8a\x70\x46\x83\xa0\x81\x8d\x9b\x4a\x86\xc7\xdf\x36\x9a\x0e\x25\x40\x01\x3a\x8a\x04\xc9\xf2\x4d\xf2\x5c\x7a\x0d\xbd\x61\x59\xb2\xe3\xee\xbf\x00\x6c\xfc\x35\x7e\x90\xf0\xc0\xa8\x81\xe2\xed\x74\x49\x70\xd2\x34\x6a\x0e\x9d\x4b\xaf\x8f\x72\x50\xc6\x3c\x4a\x87\x74\x25\xdb\x46\x87\x02\x50\x38\xb3\x89\x05\x42\xec\xa0\x26\x01\x20\x15\xf3\x17\x3c\xdc\xff\x60\xf2\x04\x10\x88\xc2\x23\x07\x45\x97\x14\x97\x44\xaa\x7d\x15\x8e\x9e\x54\x0c\x8e\x09\xf0\x44\x41\xaa\xf5\x0b\xb1\x58\x23\x23\xf4\x73\x0a\x1f\x9f\x3d\x8a\xde\x9c\xbb\x39\x74\x4a\x7c\xe9\x54\x9c\x5b\x03\x41\xa8\x33\x1d\xb7\x3f\x87\xdf\x7f\x0a\x4a\xd5\xfa\xd2\xf3\xd7\xe4\x16\x15\x0d\x3d\x12\x00\x45\xfc\x8f\x9f\x3f\xe4\xe2\x09\x80\x7a\x2a\xbe\x60\x0a\x3d\x85\xa6\x57\x45\xb9\x81\xdc\xd9\x85\x2a\x28\x9a\xd6\x3a\x12\x70\x22\x09\x00\x29\xc6\xa6\xa1\x88\x0d\xa3\x36\x3f\x95\x54\x58\xb2\x45\x4e\x6f\xa1\xe7\x08\xe1\x36\xcd\x00\x06\xa7\xe8\x3e\xd4\x03\x66\x28\x50\xb7\xe4\xa9\x44\x3f\x3d\xed\xcc\xca\x85\xb6\x25\x0d\x97\xbf\xb4\x40\x30\x9a\x30\x86\x6c\x1e\x01\x8e\x9b\x2e\x49\x34\xad\x5d\x94\x28\xdc\x34\xc4\x59\x65\xee\xe0\x04\x08\x28\xe1\x4e\x1f\x15\x8b\xc5\x78\x7e\x33\xad\x58\x09\x7a\x02\xc4\x8e\x09\xa0\x58\xe8\x7d\x1d\x3d\x4b\x94\x23\xd3\xdf\x9a\xbb\x63\x3d\x41\x44\x24\x07\x6e\x9e\xb2\x21\x84\x18\x9c\x16\xfb\x6d\x74\x7b\x30\xfe\x3c\x4e\x6f\xc2\xbe\x35\x4f\x18\x19\xdc\x15\x20\x21\xe9\xb0\xe0\x48\x09\x94\xca\x67\x24\x40\x16\x02\x50\xa8\x86\x6c\xba\x2a\x50\xa0\xea\x1d\x34\x29\x24\xd3\x33\x4f\x57\x5a\xf0\xd8\x46\xef\x79\x29\x68\xa4\x70\xe3\x98\xdc\xb8\x61\xfb\x8f\xe3\xdf\xb0\x20\x6d\xf6\x52\x2f\x25\x19\x5f\x24\x9f\xed\x85\x13\x62\x70\x97\x00\x45\x2d\x5d\xfe\xd3\xf8\x5f\x23\x56\x28\xc0\x20\x86\x58\xff\x38\x3c\xfc\xe6\x06\x0b\x8d\xd5\x39\x3c\xaa\x94\xa6\x97\x3a\x1e\x2d\xa8\x49\x88\x05\x88\xa3\x7d\x15\x1b\x1e\x2b\x2e\x99\xb3\x66\xa6\xef\x20\x25\x31\x12\xf2\xaa\x95\xc1\xb8\xdb\x7a\xc2\xd1\xe1\x1a\xe2\x0a\x73\x73\xd2\xc3\xb3\x4b\x4a\x0a\x0b\x0a\xc4\x83\x43\xb7\x62\xf5\x4f\xef\x3f\xcc\x16\x79\xe2\xc9\x0e\x40\x20\x80\x42\x78\xe4\xb2\x35\x15\x28\x9d\x70\x4f\xc1\xd1\x80\x62\x9a\x96\x7b\x42\xea\x83\xdb\x2b\x81\x64\xb1\x7c\x34\xa1\xd8\x9e\x29\x0c\x7f\x58\x53\x98\xff\x38\x67\xd6\x4a\xe1\xf1\x3f\xeb\xb1\x4d\x4b\xa6\xce\x25\x63\xa6\xe7\xf8\xac\xa2\x9f\x1f\x7c\x19\x33\x89\xb6\xfe\xf8\xfe\x23\x6e\x6d\x82\x26\x02\x40\xf9\x6c\xe1\x8e\xa7\xb6\xd1\xf2\x74\x31\x2c\x7b\xd6\x59\x45\x31\x98\xd4\x0f\x66\x56\x94\xff\xca\x8d\x9b\xe8\xe2\x34\x9a\x5e\x55\xb2\x66\x96\x56\x25\x94\x11\xe0\x2e\x38\x96\xd0\x61\x89\xfc\x9c\xcd\xf4\x97\x28\x08\x50\x48\x86\x62\x19\x23\x77\xfd\x43\xf3\xaf\x62\x3a\x0c\xf7\x3f\x08\xa5\x80\x2e\xa3\x98\x0e\xa3\x4b\x72\xe9\x89\xab\x27\x4a\x84\x78\xa7\x9c\xf7\x1f\xe9\x24\x90\x78\xfa\x8b\x1d\x74\xc8\xc0\xc8\xd2\xcd\x2b\xa2\x9e\x2e\xcd\x2d\x0e\x8b\x5f\x28\x76\xd4\x93\x08\x77\xf3\x1f\x40\x54\x58\x1a\x86\x63\x4d\x01\x08\x48\x37\x90\x0c\x0e\xbf\x40\x06\xad\x79\xe8\xfe\xe3\x3c\x5c\x7b\x3c\x80\x44\x81\xe5\x23\x4a\x9f\x99\x57\x10\x1c\x43\x28\x86\x12\xd9\x1d\x0f\x26\xc0\xf1\x42\xfc\x13\xe0\x33\xb3\x78\x5b\xca\xd6\xd0\xc2\xd9\xdb\xd2\xd6\xcd\xcb\xf7\x90\xe2\x8e\x45\x0d\x51\x45\x8e\x7b\xb5\x12\x47\x97\xe7\xb0\xca\x8a\xd2\xed\xa5\xc1\xa1\x74\xe1\xf3\xbe\x8e\x9b\x21\xa4\x53\xa1\x0f\xdb\x1f\x27\xbe\xa4\x7b\x26\x28\xa8\xb5\x8f\xe7\x16\xd3\x05\x19\x7a\xff\xa4\x5c\x77\xe7\xdd\x56\xb7\x52\x47\x56\x45\xcb\x0b\x02\xf1\xf1\x28\x45\x42\xd4\xd3\xb4\x3c\x36\xa0\xb0\x70\x85\x5e\x4e\x97\xcc\xc6\xd5\x8a\x14\x12\x58\xb9\xc1\x31\x54\x0f\x69\x9a\x82\x0c\x9d\xb7\xcf\xc8\xfc\xac\x69\x20\x76\x8e\x09\x24\x20\xfd\xb0\x3a\x85\x4f\xc9\x85\x0e\xd0\x2d\x0a\x48\xd0\x2b\x81\x4a\xc0\xad\xd6\xd3\xf4\x52\x6d\x70\x14\x49\x89\x41\x23\xb0\x76\x36\x00\x45\x09\x09\x10\x00\x12\x23\x52\xb7\x21\x77\x11\xd6\xae\xde\x71\x63\x09\x1c\xf7\xca\x1d\x7c\x9d\x99\x62\x94\xd4\x6b\x8a\x18\xdb\x3f\x66\xeb\x92\x4d\x83\x09\xb8\x04\x56\x86\x3d\xe0\x5f\x9a\x2b\x24\x00\xa1\x94\x44\x0c\xc8\x03\x14\x1b\xd7\xcc\xf5\x9e\x0e\x12\x05\x4d\x7b\x3f\x43\xe1\x59\x1b\x95\x3f\x94\x80\x24\x47\x08\x32\x45\x4d\x0d\x94\x8a\xd6\x2b\xf5\xf4\x16\x62\x65\xac\x18\xad\xf4\x13\x61\xa2\xe1\x11\xab\x1d\x1d\xbf\xd3\xcc\x42\xfc\x25\x2f\x2b\x92\x8b\x28\x58\x53\xb0\x28\x77\xf6\x90\x52\x96\x3c\xe9\xe0\x8f\xec\x61\x43\x0e\x43\x2a\x62\x9f\x26\xc5\xb0\x51\x21\x24\x7c\x4b\x97\x22\x04\x54\x94\x72\x68\x44\xc9\xa5\xe9\x62\xa9\x04\x10\x44\x8e\x20\x12\x8a\xdc\x03\xe8\x05\xb3\x17\xd0\xb9\x93\x90\xe2\xc1\x9d\x6d\x7c\x9d\x68\x9c\x04\x4f\x32\x29\x81\x7f\xba\x5f\x29\x5d\x18\xbf\x69\xea\xb2\x4d\x25\x2b\xe2\x17\x6c\x19\xbc\x03\x43\x04\xfd\x9d\xf9\x87\x3f\x04\x86\x43\x10\x05\x0a\x31\xa0\x3c\x5c\xa0\x92\x90\x88\x58\x39\x7c\xf8\xa7\x73\x41\x21\x3c\x81\x22\x84\x09\x67\xe9\x82\xc2\xb5\x00\x4f\x7b\xb8\x0d\x26\x77\xde\x98\xbf\xce\x57\x60\x23\x70\xf2\xd7\x94\x14\x64\x6f\x77\x4b\x28\xf4\xd9\xa8\x8f\x0b\xc6\x33\x74\xca\x13\x81\x58\x12\x40\x97\xc2\x8f\xe0\xe3\xeb\xe3\xe3\xe3\xed\xe3\xe5\x23\xf5\xf1\xf4\x91\xf8\x78\xf8\xb8\xfb\xb8\xf9\x88\x7d\x44\x3e\xa4\x0f\xe1\x03\xde\x32\x6f\x5f\x6f\x1f\x6f\x6f\x6f\x2f\x6f\xa9\xb7\xa7\xb7\xc4\xdb\xc3\xdb\xdd\xdb\xcd\x5b\xec\x2d\xf2\x26\xbd\x09\x6f\xf0\x92\x79\xf9\xfe\x98\xa2\x0b\x2e\xb8\xe0\x82\x0b\x2e\xb8\xe0\x82\x0b\x2e\xb8\xe0\xc2\xff\x7f\x80\x92\x32\x52\x96\xa8\x50\x4a\x26\x0a\x4f\xca\x00\x80\x4b\x8f\xba\x41\xff\xcd\x98\x3a\x23\x36\x66\x6a\x6c\xcc\xf4\x98\x39\xb3\x20\xd0\x73\x19\xbc\x32\x7b\x56\x1c\x8c\xf1\x5c\x0d\x87\x20\xce\x73\x03\x1c\x42\xe9\xda\xa5\x68\xa1\x2a\x0b\x65\xa9\x55\x28\x45\x9b\x80\x94\x49\x49\x19\xaa\xcc\x4c\xc8\xf4\x2c\x82\x43\x28\x12\x25\x6a\xd3\x97\xa8\x32\xb2\x50\x96\x16\x25\xa9\x12\x53\xd2\x94\x1a\x78\xd2\xf3\x45\x38\x04\x9b\x3c\x5f\x81\x14\x6d\x02\xff\x59\xd4\xec\xd9\x71\xd1\x4d\xf8\x63\x4e\x74\xf3\xb4\x99\xb3\x60\xbb\xe7\x6b\x70\x08\xc1\x5e\x4f\x16\x0e\xa1\x70\x8d\x32\x33\x2b\x1c\x65\x6a\xb4\x59\x68\x3c\x52\x66\x61\x26\x8f\x4d\x9d\x09\x7f\xf6\xac\x1d\x3a\x2b\x18\x69\xe8\xec\x2c\xf8\xab\xe7\x9f\xe0\x10\xf0\x9e\xef\x43\xa6\x86\xff\x2c\x2a\x45\x9b\xd0\x34\x75\x66\xf4\x47\x53\x67\xc1\xa7\x9e\x4d\x90\x94\x31\x58\x36\x2b\x1a\x7c\xa4\xed\x70\x34\x3c\x31\x3b\x23\x43\x95\x9e\xe5\xe0\x83\xad\x9d\xa9\x09\x47\xca\xf4\x24\x5f\xd2\x53\x22\x85\x97\xe7\xfe\x1a\x64\x92\x40\x38\x04\x8f\x4b\xc6\xc2\x21\x94\xa5\x4e\xc9\x44\xba\x0c\xed\xc2\x0c\x65\x1a\x4a\x52\x65\xa9\x32\xd2\x52\xd2\x55\x99\xb0\x48\x12\x25\x9c\x55\x0d\xaa\x01\x69\x93\x85\xc3\xa4\x94\xcc\x45\xb0\x56\x32\x0d\x0e\xa1\x94\x74\x5d\x76\xd6\x14\x6d\x76\x96\x2e\x3b\x0b\x25\x68\xb4\x89\x8b\x10\x6e\x4b\x34\xfc\x42\x32\x1f\x0e\x61\x9e\xf8\x8a\x74\x94\x9d\xa9\xca\x14\xae\x85\xdf\x49\xe2\xf1\x09\x27\x45\x41\x91\x4e\x8e\x08\x8e\x4a\x14\x4e\x8e\x0f\x49\xa0\x4c\x4f\x82\x56\x49\x02\x1c\x1a\xf4\x5f\x81\xde\x64\xe8\x93\x24\xc3\x0b\x4f\xf0\xb1\x0d\x73\xe6\xbe\xa4\x9c\x5b\x3f\x7b\x56\x5c\xd3\x13\x31\xca\xb9\x2f\x82\x97\xa7\x0e\x7e\x81\xa6\x4f\x8b\x99\x36\x6d\x76\xcc\xf4\x98\xa9\x33\xa6\xc6\x4c\x9d\x1a\x33\x3d\x66\xb8\x2f\xf8\xfa\xfa\xfa\xf8\x7a\x3f\x3a\x5f\x74\xc1\x05\x17\x5c\x70\xc1\x05\x17\x5c\x70\xc1\x85\x7f\x36\x6a\xee\x3f\xea\x16\x3c\x62\xb0\xa8\xdc\xf6\xf4\xb1\x57\x8e\x53\xf7\x52\xba\xf8\x6f\xbf\x14\xf6\xac\xb5\xfc\x0d\xf6\x75\xc7\xee\x41\xbe\xcf\x04\xe5\xc6\xc8\xbf\xe2\xa3\x27\xc1\xa7\x3a\x72\x1f\x88\xf8\x6b\x0f\x17\x90\x4d\xfc\x35\xe1\xb8\x07\x7c\xf8\x00\xc7\x85\x17\x79\xe9\x20\x35\xdb\xf2\x38\x3d\x7b\xc7\x18\xd9\xc4\x8b\x7b\x23\x6d\x37\x1d\xa5\x5d\xbc\x6d\x18\x37\x91\x63\xf7\x30\xe6\xc6\x4c\x14\x0e\x26\x31\x91\xc2\xe7\x84\xc8\x7d\x31\xa0\x9a\x58\x4e\xf5\xd5\xf0\xef\x0d\xd2\x7e\xfb\xc1\xb5\xd5\x41\x7a\x66\xd2\xc1\x22\x31\x33\x31\xee\xf2\x24\xdb\xd8\x3a\xb7\x6b\x45\xe2\x4a\x51\x6b\x91\x18\x5d\x93\xa1\xbb\x32\x6e\x62\xb4\x48\x5a\x53\x7f\xe9\x38\xba\x2b\xb3\x9d\x45\x77\x65\x07\x8b\xc4\x42\xc9\xa7\xc7\xf5\xa6\x58\x4d\x7c\xbf\xed\x4e\x95\x9e\xb3\x49\x7d\x8b\xc4\xa8\x41\x96\x5e\x24\x46\x79\xb2\xba\x7b\xd5\x93\x5f\x29\x12\x9f\xb4\xf1\xbd\xdc\xe3\x96\xeb\xfc\xd7\x68\xc0\xb7\xae\x0f\xc5\xf8\x06\xe9\xab\xa6\xb1\x70\x0c\x44\xa9\xa9\xa9\xcc\xc4\x54\x26\x32\x35\x14\xc8\xdd\xf1\x4d\xc7\xa6\xe3\x92\xd4\xc8\x89\xa9\x91\x91\xa1\xd3\x85\x92\x67\x86\x95\x3c\x83\x4b\xb8\xc8\x68\x8f\xd0\x7d\xc2\xde\xc4\x68\x8f\xd0\x16\xbc\xd7\x4c\xbd\x7b\x70\x1f\xae\xe8\x63\x27\x77\xc7\xeb\x1f\x91\x0b\x98\x80\xb1\x31\xd7\x99\x78\xc6\xdf\xe4\xcd\xc8\x11\xf8\x1e\xfc\xc1\x9b\x91\x33\x01\xbd\x01\x07\xed\xde\x58\x52\x0a\x81\x6f\xaf\xbc\xf7\x3a\x77\xdd\x42\xd9\x6e\x56\x5e\xaf\xd2\xaf\xf3\x7f\x44\x6d\x25\x24\x54\x10\x29\x12\xbb\xb9\xa3\xa8\x58\x0f\xcf\x38\x85\x54\xad\x7b\xc2\xcb\xdb\xc7\x57\xe6\xe7\x1f\x10\x38\x62\xe4\xa8\xd1\x63\x82\x43\x42\xc7\x8e\x0b\x1f\x1f\xa1\x37\x4c\x88\xdc\x58\x34\x71\x67\x79\x65\xf4\xa4\xc7\x62\x1e\x9f\x3c\x65\xea\xb4\xe9\x7b\xd9\x19\x35\x75\x47\x66\xce\x9a\x3d\x67\xee\xf1\x26\x7e\xde\xfc\xb3\x97\xc0\x1b\xdc\xd0\x13\xf7\x59\xa8\x4f\xf3\xb6\xb9\xa3\xab\x03\x4d\xd4\x77\xa6\xbf\x31\xd3\xd1\xda\x81\x83\x40\x5a\x2b\x6c\xe3\xac\xe6\xca\x8b\xd6\x23\x75\xe7\xa2\x3d\xa4\x52\xa9\xb4\x82\xf0\xad\x98\xe6\x53\x91\xe8\xed\xb9\xb3\xe2\x0b\x99\xe7\x0b\x15\xb7\x64\x07\xa9\xe3\x55\xfa\x63\xbb\x8e\x1f\x7b\xf9\xb8\x06\x7c\x2a\x2a\x58\x07\xcc\xef\x1e\xec\xb0\x9c\xe8\x6c\x6b\x67\x3f\x68\x6b\xeb\x64\xbb\x3a\xad\x2d\xd6\xce\x1e\x7c\xfa\x44\x1b\xdf\xd3\x6e\xfd\xb0\xa9\x93\x6d\xe0\xf9\x16\x0b\x7b\xa2\xed\x14\xdf\xd5\x69\x69\xff\x23\x6b\x6d\x3d\xf1\x36\x6b\xae\x7f\xaf\xbe\xa2\xa2\xa2\xa2\xa3\xa5\xad\x93\xed\x6c\x73\x5c\xde\xd8\xde\x76\x8a\xad\x39\x69\x69\x6c\xe8\x6a\xe9\x3c\xf6\x67\x13\xfb\x4f\xd0\xad\xcc\x57\xe6\x23\xf3\x96\x79\xc9\xa4\x32\xcf\x7f\x02\x79\x17\x5c\x70\xc1\x05\x17\x5c\x70\xc1\x05\x17\x5c\x70\xc1\x05\x17\x1e\x21\x50\x86\x6a\x71\x76\x4a\x86\xf0\x28\x5a\xe9\x78\xca\x9f\x9c\xa2\x51\x85\x43\xba\xe7\x17\x1e\x47\xe7\x1e\x5d\x9c\xad\xcd\x52\x45\x84\x27\x68\xb5\x59\x53\xa7\x87\x3b\x8f\x50\x82\x0a\xe9\x32\x54\x99\xaa\xf4\x2c\xa4\x4d\x77\x3c\x2d\x4f\x4a\xc9\x5c\x14\x0e\xcb\x3c\xaf\x79\x1c\x4d\x50\x69\x22\xe6\xee\x84\x72\xcf\x3b\x1e\x47\xc3\x75\x1a\x95\x32\x53\x85\x12\xb5\xe9\x99\xd9\x1a\x07\x83\x24\x6d\x26\x9a\x3e\x79\xfa\xe0\x03\xf6\xb4\x94\xf4\x85\xe1\x50\xeb\x49\x4a\x8e\xce\x3d\x1a\x9e\xa6\x4c\xcf\x56\x6a\x50\xb2\x36\x03\xa9\x32\x32\xb4\x19\x68\x7c\xf8\x67\x51\xd3\xa6\x4d\x8b\x86\x3f\x7b\x7a\x4b\x06\x69\x3f\x58\xdc\xe0\x3f\x8b\xf7\x08\x6f\x89\x14\xb8\xb7\xa6\xc5\xc6\xc6\x42\xa0\x24\x50\xf8\x2a\xc0\x24\xc9\x58\x48\x8a\xe0\xfb\xa2\x66\x44\xcf\x3d\x84\x12\xb3\x32\x34\x8f\x27\x21\x48\x94\x8c\x03\x87\x02\xf8\xbe\xa8\xe9\xc2\x29\xe1\x10\xf2\x24\x11\x80\xdb\xc5\xf7\x45\xcd\x16\x2e\x50\x0a\xcf\xf6\x13\x54\x1a\x0d\xca\xd4\x66\xa7\x27\x41\x85\x24\x0a\xaa\xa6\xc6\xce\xfd\xed\x5c\x65\x04\x1f\xae\x7a\x42\x95\x98\x9d\x95\x92\xbe\x10\x39\xd5\x3a\xb7\x6e\x6a\x6c\x6c\xec\xdc\xfd\x50\x25\x99\x06\x47\x93\x22\xc2\x13\x32\xb2\xd3\x07\x4f\x42\xbd\xa4\x5f\x74\x08\x25\xaa\xd2\xb3\x54\x19\x28\x33\x2b\x03\x5f\xa8\x8c\x80\x4e\xc9\x0d\xd1\x6b\x1d\x51\xd3\x62\xad\x51\x9f\x47\x29\x23\xa2\x3f\x9a\x16\x1d\x3d\xf7\xa8\x32\x62\xae\x19\xae\x4a\x78\x0f\xcc\xee\xa0\x43\x73\xa7\xdb\x66\x9d\x7c\x6b\x5a\xec\x8c\x58\x08\xf2\x3c\xe7\x71\x34\x7c\xf8\xb7\x1b\x86\xeb\x82\xf2\xa5\x7c\xfe\x4b\x94\xfa\x3f\x08\x62\x3f\x99\xe8\xc1\x5a\x2d\x3f\x8f\x07\xbf\x55\xf5\xb2\x03\x8c\xa7\xfe\xf1\x05\x61\x76\x00\xfb\xcf\xfc\x97\xd9\x01\x08\xbb\xa3\x0e\x86\xdd\xb9\x8f\xff\x8b\xec\x0f\xd3\x00\xda\xf1\x7f\x70\x5f\xf8\x14\x0d\x5d\x1b\x66\xff\x4f\x08\xee\x82\x03\x7e\xff\x4f\xdb\xff\xef\x86\xdf\x7f\x4d\x3f\xfa\x3f\x16\x7e\xa2\x47\xdd\x82\x47\x0b\x3f\xf1\xa3\x6e\xc1\xa3\x85\x9f\xdb\xa3\x6e\xc1\xa3\x85\x9f\xfb\xa3\x6e\xc1\xa3\x85\x9f\xc7\xa3\x6e\xc1\xa3\x85\x9f\xe4\x51\xb7\xe0\xd1\xc2\xef\x5f\xfc\x51\x97\xb0\x7c\xe8\xbf\x30\xfc\xbc\x1e\x75\x0b\x1e\x2d\xfc\x1e\x7c\xe1\x7b\x9c\xec\xc5\x13\x6d\xad\xdd\x96\xf6\x4e\xf3\xbb\xec\xdf\x83\x08\xc2\x65\xc6\x53\x5d\x8d\x8d\xd6\xd6\xbf\x7b\x9e\x65\xd9\x60\xa0\x64\x2f\x76\x74\x36\xfc\x2c\x0d\x4c\x45\x26\x33\x7e\xd0\xd6\xf6\xf3\x35\x58\x0f\xf0\x95\xbd\xd8\xd1\xd2\xd6\xf9\xfb\x9f\xab\xc1\x8a\xc1\x2e\x13\x7f\x68\x6d\x6f\x39\xf4\x73\x35\x7c\xc2\xff\x7d\xf2\x3f\x98\xf2\x8e\x91\xbd\x70\xa2\x8d\xef\xf9\x59\x96\xac\x27\x04\xcb\x8c\xb8\xca\xdb\x6d\x1f\x34\xd7\xfd\x8c\x70\x21\x58\x8b\x7c\x4f\xc3\x3f\xa0\x12\x2a\x33\x9e\x68\x6a\xf8\x79\x25\xb2\x22\x18\x2b\x7b\xb1\xdd\xd2\xda\x75\xea\x03\x4b\xfb\xdf\xaf\xe2\x0b\x61\xb2\x17\x1b\xad\x2d\x96\x53\xff\x80\x0a\x92\x19\x1b\xad\x27\x7f\x5e\x20\x36\x10\xc0\xef\xc1\x8f\xf6\x03\x64\x2f\x36\x59\x5a\x5a\xda\xfe\x01\xc1\x40\xd9\x0b\xc2\x57\x16\x3a\xda\x1a\x3b\x7f\xa6\xca\x08\x99\xb1\xa5\xad\xe1\xa4\xa5\xfd\xe7\x94\xe4\x0e\x23\x65\xc6\x46\xfe\x83\x86\x0e\xeb\x89\x9f\x61\x34\x09\x46\xc9\x8c\xd6\xd6\xce\x7f\x50\x67\x12\x04\xc9\x5e\x3c\xd5\xd0\xd1\xf9\x73\x0a\xc2\x6d\x19\x2d\x33\x3a\xab\x9c\x68\xb7\x34\x74\x5a\x7e\x52\xe5\x5f\xbc\xef\x77\xc1\x05\x17\x5c\x70\xc1\x05\x17\x5c\x70\xc1\x05\x17\xfe\xa5\x30\x75\x4e\x5c\x6c\xcc\xd4\x39\x71\xd3\x9c\x0f\xa1\x41\xeb\xb9\x0c\x12\xf9\xcf\xa2\xac\x53\xa7\xc6\x4e\x8d\x9e\x7b\x30\x91\x9f\x75\xf2\xa8\xf3\xc1\x75\x82\x0a\x65\x66\x67\xa8\x50\xa2\x52\x97\x89\x84\x5f\xb6\xa7\x64\xa2\x24\xed\xd2\xf4\xa1\x27\xd8\x39\x9e\xab\xe1\x68\x5f\xd4\x8c\xe8\x79\xe1\xc9\xba\x70\xd8\xe2\xf9\x77\x9f\x5d\xef\xf1\xbc\x21\x4a\xe0\x7f\xfc\xf0\xfa\x60\x02\x7f\x3a\xf6\x64\x02\x3f\x15\xaa\x3c\xef\x8b\x5e\x4b\x70\x3e\xcd\x06\x48\xfa\xe7\xc9\xff\x7b\x62\xf0\xf7\xff\x63\x25\x81\x3f\x79\xe8\x0f\x73\x24\x63\xa1\x6a\x9a\x20\xbc\x52\xa7\xd3\xa8\x50\x4a\xca\xa0\xa2\xd6\x4a\xa2\xa0\x6a\x86\x70\x2a\x49\x9b\x89\x96\xa8\x32\x32\x53\xb4\xe9\xc2\x17\x1b\x50\xe6\x93\x99\x59\xaa\x34\x94\xa6\xcc\xcc\x52\x65\x0c\x5e\xf0\x8a\x64\x1a\x54\xcd\x16\x2e\x48\x55\xa6\x67\x2b\x33\x9e\x44\x53\x63\xd0\xd4\x39\x71\x83\x5f\x00\x80\x1a\xc9\x7c\x38\x9a\x14\x31\x2f\x3c\x41\xa3\x55\x26\x21\xbc\x51\x65\x4c\xd6\x26\xa4\xc6\x86\x43\x9b\x24\x19\x5e\x99\x11\x3b\x67\xd6\xdc\x43\x28\x59\x99\x99\x25\x9c\x45\x29\xe9\x28\x25\x3d\x4b\xb5\x50\x95\x81\x12\x94\x99\x29\x89\x40\x79\xea\x84\x6f\x1a\xbc\x62\x9d\x33\x33\x4e\xe0\x95\xa8\xd5\x3d\x99\x91\xb2\x50\x9d\x85\x1c\x12\x24\x6a\xd3\x74\xd9\x59\xaa\x8c\x98\x94\xf4\xc4\xc9\x68\xb8\x2e\xfc\x7d\xfd\xff\xe5\x9e\xff\xbb\xe0\x82\x0b\x2e\xb8\xe0\x82\x0b\x2e\xb8\xe0\x82\x0b\x2e\xfc\xab\xe0\x7f\xc4\xfc\xff\xa5\x7f\x9e\xfc\xae\xf9\xff\x10\x02\x7c\x03\x5c\xf3\x7f\x17\x5c\x70\xc1\x05\x17\x5c\x70\xc1\x05\x17\x5c\x70\xc1\x85\xff\xa5\x90\xcf\x32\xa7\x89\x9f\x17\xe9\x4f\x04\xff\xd9\x1d\x26\xe4\x9a\x57\x83\x68\x15\x31\x27\x17\x56\x1f\x9e\x06\x79\x66\x1a\x44\x0d\x8a\x8d\x51\x1f\x58\xd8\x8e\xae\x76\x0b\x7b\xa2\x81\xef\x60\x5b\xda\x4e\x7c\xc4\x5a\x3b\xd8\x93\x6d\x67\x5a\xa3\x45\xcb\xcd\xfd\x22\x91\x50\xf9\x90\x1d\x08\x9f\xd5\xf0\xf4\x49\x85\x2a\xca\xda\xda\x19\x4d\x8c\xec\x17\xad\x60\x4f\x58\x5a\x3b\x2d\xed\x6c\x47\x67\xbb\xb5\xf5\x43\xb6\xa1\x9a\x18\x77\x43\xf4\xc1\x73\x87\x02\x21\x20\x6e\x5e\x83\xe2\xf9\x11\x87\x48\x78\x5e\xa4\xff\x60\x64\x1d\xc0\x84\x0f\x9e\x33\x13\x40\x78\xdf\x17\xe9\x3e\x10\x3d\xdd\xa0\x10\x3d\x45\xc8\x9f\x22\x4e\xfc\x73\xe5\xff\x0d\x11\x28\x85\x45\xa2\xb4\x59\xf5\x35\x22\x51\x7a\x83\x22\xfc\x4f\x51\xf0\x3c\x11\x10\x08\x27\x15\x1b\xa3\x8c\xd1\x58\x82\xce\xf6\x96\x83\x27\x89\xe0\xb1\x50\x70\x88\x74\xe8\xc3\xb1\x6c\x9f\xd5\xea\x10\x9f\x98\x1a\x05\x05\x7f\x12\x3b\x4e\x9d\x6c\xeb\x60\xbb\x2d\xed\x1d\xd6\xb6\x56\xf6\xdd\xb7\xdf\x65\xd9\x8e\x9e\x8e\x4e\xcb\x29\xd6\xf1\x3d\x74\xe7\x05\xe1\xd3\xa0\xe0\x3d\x0f\xc7\x05\xcd\x0d\xad\x5d\x0d\xed\x3d\xac\xf9\x8f\xac\xb9\xfe\xc8\xbb\xce\x1a\xc1\xf3\x1d\x8a\xfc\xa0\xa5\xad\xe1\x24\x3b\xec\x0b\xf5\xd1\x84\x24\x19\xd2\xfe\x04\x14\xa1\xd0\x41\x81\x59\x0a\xb8\xe9\xef\x8b\x04\x52\x3f\xbb\xae\xa0\x73\x59\xc1\x23\x75\x7f\x34\xd7\x1f\x39\x34\xc8\x62\x19\x9c\x78\x6e\xf2\x70\x5d\x04\xfa\x06\xba\xe6\xff\x2e\xb8\xe0\x82\x0b\x2e\xb8\xe0\x82\x0b\x2e\xfc\xaf\xc6\x8f\x7e\x5e\xfa\x77\x7f\x74\x6a\x73\xdb\x65\x93\xf0\xa2\x5d\xbc\xe8\xe0\x0b\xc7\x4d\xc0\xa8\xd1\xab\x03\x55\x53\x0e\x9f\xfe\xeb\xea\x91\xfb\x57\x8f\xfc\xd5\xe9\x66\xea\xe6\xa3\x5a\xba\xfd\x3f\x0d\x51\xfd\xea\x11\xfb\xda\xa1\x9c\xba\x6d\xe2\x99\x0e\x5e\x7a\x70\xf5\x88\x3f\xe6\x8d\x60\x3a\x8d\x5d\x71\x5c\xfb\xc0\x6f\x02\x98\xf6\x8a\x00\x8a\xeb\xb8\x02\x4c\x47\x45\x20\xf5\xd7\xdf\x04\xd4\xaf\x1e\xb1\xbb\xbd\x89\xbf\x63\xb2\x33\xbd\xfa\x03\x5f\xbc\x4a\x51\xbc\xb8\x4a\xc6\xbb\x5f\x92\xf1\x64\x15\x98\xec\xfb\x93\x02\x83\xb8\x8e\x92\xac\x40\xe6\x13\xae\x9d\xb9\x68\x5a\xcd\x8e\xa8\x08\xa0\x5e\x09\xa4\x4c\x14\xeb\x85\xdc\xa8\x4a\x91\xa6\xda\x3f\x88\xeb\x3c\x70\xa5\xe4\x37\x01\xb5\x2c\x60\x7a\x17\x9b\x9a\xf9\xdb\x1c\xe6\xa4\x97\x11\xc2\xea\xee\x1e\x12\x4f\xa9\x97\xb7\x8f\x2f\x00\x49\x82\xd8\x69\x07\x3c\x0d\xc2\xb3\x48\x6b\x6b\xa7\xe5\x43\x4b\x3b\x2b\x58\xaa\xa2\x02\x06\xcb\x87\x7e\x9a\x3c\x78\xe6\xc7\xb6\x6d\x63\x4f\x59\x4e\xb5\xb5\xf7\xbc\x5d\x51\x01\x8e\x9f\x20\x97\x7d\xd6\xf8\x59\x6c\xe4\x81\xcf\x8e\xbd\x12\x70\x21\x29\x90\xbf\x51\x41\x51\x8e\xe6\x57\x3c\xdc\xe2\xc6\xd3\x7c\x37\x6b\x37\xf6\xa3\xbd\xfe\x11\x97\x25\x4d\xc6\xd3\xc6\xcb\xaf\xc8\xa8\xa8\xd8\xd1\x3a\x91\xa6\xd2\xaf\x8a\x38\xb6\x3a\xd0\xf6\xfb\x0a\x19\xd5\x7f\x6c\x75\x60\x05\x45\x69\x68\x3f\x13\x30\x9d\xa6\x3b\x4c\x17\x0b\xe6\xce\xdd\x9d\x4d\xfc\x5d\xae\x2b\x28\x9f\x60\xba\x78\x9b\x41\x33\x29\x10\x7d\x2e\x62\xce\x1b\xcf\x99\xa0\xc2\x97\x62\x7a\x99\xcb\x2c\x61\x3e\x57\xe1\x4d\x55\x8c\xa1\x9a\xcc\xe7\x2a\x7c\xa8\x8a\x60\x4a\x5f\x15\xc6\xda\xf7\xee\x4f\x0a\x6c\xa6\xbe\xd7\x57\x49\x78\xb2\x8a\xf8\xe3\xd7\xa2\x72\xe3\x27\x2c\x69\xbc\x88\x24\x94\x01\x35\xf8\xa3\x49\x81\x1a\xd1\x25\x93\xbe\xa6\x36\x26\xf6\x78\x33\x3f\x10\x13\x7b\x3c\xc5\x5e\xeb\xd8\x29\xe7\xbf\xd4\xff\x54\xfd\x6e\x06\x83\xa6\xda\xff\xc0\x15\x5b\xd8\x25\x71\xa5\x1f\x5b\x31\x8a\x32\xad\xae\x08\xa0\x4c\x58\x60\xb4\xd9\x7f\xb8\xcc\x2c\x59\x2f\x08\x33\xbc\xcc\xe4\xc1\x9c\x96\x32\x7d\x07\xfa\x58\xc0\x22\x8f\x3d\x7d\x91\x97\xf4\x37\x1d\x0f\xac\xbc\x5e\x37\x22\x88\xeb\xcb\x1f\xcf\xf4\xb1\xd0\x78\x9a\xbf\xd8\x4a\x51\x7c\xa3\xa6\xc6\x7f\xd7\x95\x11\xb5\xc7\x56\x07\x46\xd3\xcc\x95\x66\x87\x6e\x84\x0f\x19\x85\xb5\x29\xe8\x71\x38\xf9\x2a\x78\x55\x46\x55\x49\xfb\xfb\x6d\xba\xde\xfe\xbf\xae\x0e\x8c\xfd\xce\xb6\xf0\xa0\x8c\xb2\x79\xb5\xe0\x8d\x49\xc1\x5c\xe6\x3f\x7f\x45\x46\x19\x3f\x37\xd9\xf7\xaf\x0e\xc4\x35\xb8\xde\x58\xdf\x57\x28\xaa\xac\x0f\x9d\xf7\x3f\xd0\xc7\x37\xda\x32\x76\xa9\xf7\xbe\xff\x4a\xc0\xfe\xa4\x40\xe6\x0b\xae\x7f\x7f\x56\xa0\xa1\xb6\xf7\x34\xff\x36\x44\x5c\x8e\x5d\xb7\xd1\x97\xbb\xec\xb9\x93\xb9\xcc\x7d\x5e\x21\xa3\xd0\xdc\x80\x2a\x0a\xa8\x24\xb1\x06\xe1\x4d\x8f\x68\xdd\x45\x61\x5d\x37\x3f\x08\xa1\x56\x07\x0e\x06\x08\xf1\xcd\x59\x34\x23\xb0\x0a\xca\x7a\x0f\xc2\xa5\x14\x4d\xed\xc1\x17\x8e\x0b\x3b\xea\x9a\x83\xff\xe7\xf8\xc1\xff\x73\xdc\x94\x5d\x01\x7c\x05\xc9\x9f\x02\x9e\xd7\x9f\x22\x79\x09\xae\xf0\xc2\xf1\x28\x3e\x73\xaf\x2d\xea\xe0\x4e\x5c\xd9\xaa\xe1\xa5\x07\xc9\x4b\xd6\xeb\xbc\x48\x53\x4b\x39\xce\x9b\x8e\x33\x17\x4d\x01\xcc\x27\x26\x0f\x26\x82\x8f\x71\xd6\x43\x8e\x7a\xb6\xe1\xf5\xde\x74\xd6\x23\x99\x08\x5e\x6c\xd0\xa0\x40\x93\x17\x33\x01\x85\xdf\x67\xc1\x7c\x91\x12\x5e\x58\xc0\xdf\xaa\x82\x63\xe7\x02\x84\x83\x7e\xfe\x3b\x83\xda\x26\x35\xdd\x62\x03\x98\x8b\xc6\x4f\x78\x89\xc9\x8b\x0d\xc4\x7b\xa6\xd5\x4c\xbb\x69\x04\xd3\x81\xf6\xfa\x1b\xfb\x9b\x5e\xa1\x28\x93\x5f\x85\x8c\x32\x3d\xb4\xf8\xd9\x08\xdf\x11\x3e\x23\xbc\x47\x78\x8d\xf8\x17\x5a\x12\xa4\xa7\xfe\x4f\xbc\xba\xfe\x5d\x5e\x8d\xa8\x8b\xdc\xcb\x9a\xb2\x0b\x1a\xeb\x45\xae\xea\xfd\x43\x7c\x8d\x81\xc9\xe9\xcd\x31\x30\xb9\x7b\xd5\xe8\xf9\xaf\xb8\x37\xd5\x1c\xab\xe6\x7e\xa7\xe6\x7e\xab\xe6\xf6\xab\xd7\xe5\x00\x6b\x37\xd8\xc6\x5b\x57\xdb\x44\x68\xed\x05\xe3\x4b\x86\x54\x66\xa4\x81\xe1\x0c\xcc\x01\x03\xf3\x07\x03\x53\x63\x60\x4c\x06\xa6\x56\x55\xc5\xbc\xc5\xed\xd7\x9b\x80\xf1\x43\x66\xa8\x13\x69\x52\xbf\x46\x25\x97\xea\x56\x5b\x27\xdb\xbe\xb5\x5a\x6d\xd9\xd6\x26\x5b\x9f\x35\x9c\x97\x71\x47\xaa\xeb\xf3\xa1\x92\x68\x42\x7d\x9f\x6b\x16\xf4\x59\x1b\x79\x8a\x0d\xe2\xe3\xb8\xfd\xbc\x88\x25\x62\x58\xd0\x10\x9f\x5b\x3f\xe0\x45\x9a\xac\xcf\xad\xed\x95\x22\x8d\xf7\x27\xe8\x2f\x17\x51\xf1\x05\x53\x74\x8c\x29\x2a\xc6\x14\xc3\xc2\xe9\x23\xbc\x48\x63\x86\x2a\x4a\xe3\xdf\xc9\x8e\x30\x18\x34\x67\x2e\xa0\xcf\x3f\x61\x58\xe3\x9b\x07\xfc\x6c\x6e\x55\x50\xf6\x47\xfd\x01\x7f\xca\x87\x05\x33\x5b\xdb\x64\x66\x6b\x76\x69\x6e\x7c\xa6\xb9\xfb\x25\x32\x03\xd8\x44\xb8\x26\x63\x2c\x43\x79\x1d\x36\x71\x15\xd8\xf2\x5f\xef\xef\xef\xef\xdf\xd5\x2f\xa0\x4c\xcf\x12\xe8\xee\x97\x47\x8f\x79\x12\x4c\x15\xc7\x54\x97\xa1\xf7\xfb\xd0\xc4\xaf\x58\x02\xfd\xe9\xab\xa3\x71\x03\x9e\x84\x6d\xd4\x31\x19\xc1\x6c\x39\x46\x11\xcc\xd6\x63\xfe\x04\x73\xe4\x98\x1f\xc1\xd4\x6b\xda\xcf\xec\xca\xf7\xab\x7d\x1d\xbd\x07\xd6\x18\xfe\x3a\x32\x03\xb2\x7f\x8c\x8a\x2f\x04\x45\xc4\x45\xf8\xc5\x8a\xea\x44\xfa\xba\x81\xaa\xdf\x6b\xfc\x3b\x0f\x1c\xe1\xc9\xc6\xfa\xc6\x23\x55\x10\xa1\xde\xa5\x36\x11\xa8\xbb\x03\xe9\x2f\x9a\x80\x79\x19\xbd\x07\x71\x57\xda\x2a\x47\x59\x45\x75\x01\x56\x62\x52\x0a\xa1\x7a\xd9\xf2\x72\xe5\xd3\xcc\xcb\xc8\x0c\x9a\xbd\x17\x0e\xbc\xcc\xc7\xd4\x15\xe7\x7b\x54\x16\xe6\xf9\xf1\x22\xcd\xaf\x2f\xe7\xdb\x99\x1c\x69\x5e\x4e\x8d\xa1\xe7\x10\x5f\xb7\x06\xad\xbd\xa0\x46\x03\x17\x0c\xd5\x2f\x51\xa3\x6a\x6d\x4b\xf8\xdc\x64\xbf\x5d\x93\x06\x99\xb1\xc1\xcc\xcb\xfc\x19\x5c\x4f\x5d\xc9\xbc\x64\x2c\x3f\x40\x57\xef\x2c\x3b\x62\xac\x47\xef\x01\x3f\x36\x62\x84\xce\x17\x79\x0f\x44\xd3\x15\x40\x56\xd9\x59\x82\x97\xc4\xd2\x68\xd9\x79\xf4\xf1\x79\xa1\x8a\x19\x22\xfc\xa8\xa9\x11\x23\x74\x9e\xfd\x65\x47\x4c\xc0\xf8\xd8\xbc\x19\x1f\x6b\xb8\xcd\xc3\x34\x97\xf1\x31\xc5\x04\x31\xbe\x43\xc6\xbc\xfa\x39\x5a\xd0\x87\x8a\xcf\x69\x9e\xff\x58\x7d\x10\x48\x5b\xac\x01\xa5\x7e\xcd\xf9\xa3\x55\xe7\xd0\x7b\x60\xf3\xb0\xc6\xd8\x44\x9a\xe7\xce\xe3\xfa\x0c\x6d\xdc\xc9\xbd\x54\x5d\xce\x38\x5a\x61\x9b\x8e\xde\xbf\xa8\xb9\x7e\x9e\x1b\xc1\xb7\x68\xca\xce\xa3\xdf\xf7\x34\xd5\xf2\xfe\x55\x93\x9a\xcc\x47\x6c\xb9\x4d\xe6\x23\x4c\x71\x93\xf9\x48\x13\xb3\xc3\x7c\xa4\x16\xed\xed\xb9\xf4\x0b\xfe\x82\xe6\xb1\x8f\x39\xba\x7a\xe7\x81\x11\x94\x48\x93\x79\x96\x05\x33\x6d\xf3\x30\x7d\xc2\x7e\xac\x99\x7b\x5e\x2f\x57\x3d\x91\x95\xa1\x44\x29\x0b\xd3\xb5\x19\xaa\x24\x1f\x90\x67\xa8\x84\xef\x63\xf9\x00\x2f\x66\x7d\xd0\xf2\xf3\x29\x76\x3d\x17\x61\x0d\xaa\x74\x43\xf7\xce\xf1\xe3\xf2\xa9\x68\x1b\x13\x51\x39\x5a\x82\xbe\xeb\xb5\x46\xdb\x44\x1a\xeb\xc5\xa8\x4a\x8f\xe6\x5d\x97\x23\x2a\xdd\x6a\xfb\x9b\x79\x77\x6c\x80\x33\xe7\xd0\xd2\xf3\xfc\x0d\xd4\xf7\x39\x82\xde\x5a\x16\xfa\x9b\x6d\x7f\x31\xe7\xa0\xe5\xe7\x9b\xac\x3e\xfc\x4d\x04\xe7\x35\x49\xe7\x4d\x28\xc6\x24\xf7\xdc\x69\x65\x2b\x49\xb7\x9b\xe8\xea\x40\x34\xad\xe6\xae\xa3\x9a\xfb\x06\x3d\x37\xc2\xe6\x1f\x2b\x66\xed\xbc\x98\x2b\xae\xde\xc1\x6c\x31\x6e\xd5\x58\x2f\x1a\x22\xce\x52\x6e\x55\x3f\x68\xae\xdc\x30\x7d\xc3\x7e\x8c\xe6\x9e\xe7\xb6\x55\x6f\xc7\x0a\xd1\x23\xf7\xcf\xab\x08\x96\x34\x41\x05\x41\x9a\x14\xe8\xab\xf3\x7a\x6b\x38\xef\x8b\x5e\xb8\x68\x9a\x87\x8e\x5f\x44\x0b\xce\x6b\x3e\x3c\x8f\x4d\xe4\xfe\xb9\x29\xa6\xc2\x4e\xa0\x98\xae\x83\x40\x5a\x45\x3c\xa5\x59\x75\x16\x2d\x3b\xaf\x89\xe9\x3a\x50\x52\x5d\x6a\xda\x1b\x63\x02\x66\x44\x19\x6d\xdc\xe9\xf4\x78\xac\x79\x83\x66\xd2\x59\xec\x9e\xde\xe7\xac\x31\xb6\x6b\x06\x7d\x15\x94\xe9\xca\x16\xd7\xdd\xbe\x32\x85\xf1\xe1\x16\x33\x39\xd6\xd1\x75\x9d\x9c\x4e\x1a\x99\x23\x8d\xcc\xc9\xd3\x31\x3a\x2e\x27\x6f\x31\xb3\xd8\x5d\x17\xb9\x98\xd3\xe5\xf9\x30\xba\x4a\xb2\x77\x31\x56\x88\xff\x39\x27\x51\x13\x8f\x8e\x5f\xe4\xfc\xd5\x9c\x9f\x1a\x15\x5f\x30\x4c\x42\xeb\x2f\xf0\x41\x06\xca\x1f\x3d\xff\x15\xf2\xfe\x94\x05\x8e\xdd\xcd\x34\x71\x6f\xee\x66\xf4\x9a\x89\x5f\x19\x58\xd2\xcc\x5a\x36\x56\x8e\xe2\x3d\xca\xcd\xac\xa5\xa0\xd2\xb7\xfa\xcd\x93\x6b\x2b\x25\xbc\x0f\xc7\x5a\xf2\xeb\x3c\x38\xb6\xfa\x4d\xcd\x7b\xe7\x70\xdc\xa2\xae\xcf\xb9\x57\xaa\x2b\x98\xb7\x8c\x7f\x44\x9d\x97\x4d\xfb\x59\x60\x5e\x31\x56\xa0\x99\xbd\x2c\x98\x5f\xd9\xcd\x34\x3d\xd8\xe8\xd1\x82\xf3\xd8\x87\x22\x6c\xd1\xd6\xe3\xb6\x39\xd6\x13\x41\xb6\x19\xd6\x98\x20\x5b\x88\x75\x9e\x2d\x09\x15\x5f\x88\xf0\x8b\xbd\x80\x66\x5c\xc5\x5d\x4d\xdb\x39\x93\x51\x6e\xec\xd6\x73\x6b\xaa\x0d\xcc\x7c\xe3\x02\x2e\xbf\x7a\x2d\x13\x6f\x94\xeb\x25\x8d\x5b\xa3\x78\x91\x26\xaf\x1b\xad\xeb\xd6\xcc\xec\x31\x89\x50\x77\x07\x57\xaf\xe6\x8e\xa8\xb9\xad\x6a\x6e\x8b\xda\x54\xa7\x46\xef\x01\x8a\xef\xd1\xb4\x9f\x41\xde\xe7\xd0\x81\x1e\x6e\xab\x65\x71\x9d\xd7\xde\xb8\xbc\x23\x07\xea\x2b\x3d\xfa\xeb\xc4\xdc\x9a\x03\x06\x34\xb6\xbb\x72\x2c\xf7\xc6\x15\x82\x39\xc2\xfd\xe6\x0a\x30\xf5\x7a\x7e\xc0\x64\x67\x18\x94\xd7\xf1\xba\xb5\xce\xe6\x55\x35\x32\xa6\x6a\x99\xc6\xbf\x13\x5b\xdf\x70\x3c\xc1\x36\x8f\xd9\x62\x60\xb6\x1a\x98\x23\x06\xa6\x1e\xfd\xbe\x67\x6f\x50\xde\x11\xe6\x48\x25\xd9\x5b\xaf\xaf\x9a\x1b\x53\x05\x65\x3e\x2c\x18\x7d\x39\xdf\x03\x3e\x8c\x4f\x99\xaf\xf9\x88\xad\xdf\xe2\x6b\xfb\xa2\xc9\x1a\xce\xdf\xb4\x5d\x31\x18\x0c\x7a\x54\x7c\x01\xf7\x38\x6f\xd9\xdc\x4c\x27\xb1\x15\xf6\xf3\x6e\xe8\x40\x8f\xed\x3d\xf4\x1e\xee\x7c\xe3\x7b\x34\x51\x67\xd1\x9d\x5e\xb5\xb5\xce\x26\xb6\xbe\xc5\xbf\xdc\xf8\x26\x2f\xde\x3b\xc8\x22\xe2\x06\x15\x78\x60\x6b\xbf\x4d\x66\x1a\x8f\x96\x9f\x3f\xb0\x85\xdb\x8a\x22\xae\xa2\xa5\xe7\xb1\x73\x44\x9d\xd5\xb4\x9f\xb1\xad\xb4\x3d\x7e\x65\x67\xa5\x9f\x55\x51\x17\x28\xad\xa9\x27\x78\x75\x3d\xf0\x6a\x8d\x19\x34\xc9\xe7\xac\x73\x6d\x7f\xd3\x58\x2f\xc6\x71\x6b\xae\x10\xd5\x86\x3a\xa2\x9c\x29\x31\x96\xea\x0f\xc2\x71\xeb\x2f\x6c\x84\x1e\x65\x76\x55\xd9\x23\xce\x52\x22\xcd\x95\x1b\x56\x51\x1d\x11\xc4\xcf\xc7\xae\x87\xb9\x79\x33\xdb\x8c\xdb\xb9\x2d\xd5\x5b\x99\x42\x63\x91\xc1\x60\x5a\xc1\x76\x54\x8a\x34\x53\x3b\x35\xf3\x3b\xf9\x51\x55\xed\xd5\xdb\x79\x91\xc6\xbf\x93\xdb\x86\xe3\x80\x2b\xac\x2e\xc2\xb1\xa2\x8f\xe3\xde\xb9\xbc\x86\xd1\x71\x75\x97\x0d\xcc\x62\x64\x3b\x8b\x4e\xfd\x80\x88\x1e\xcd\xa9\x1f\xf0\xfe\xc0\x0f\x41\xdc\x9a\x3c\x1d\x93\xcf\x19\xf2\x16\x33\x6b\xb9\x0c\xa6\x1b\x11\x3d\x68\xe0\x87\x88\x6e\x0a\x5b\x54\x73\xa3\xd3\xa4\x63\x01\x9b\xdb\x94\xc1\xc4\x9b\x50\x35\x13\x4d\xa3\xe5\xe7\xb9\x08\xeb\xb8\x4a\x0f\x74\xef\x9c\xc9\x8d\x89\x68\x32\xbf\xc1\x87\xd6\x98\xdf\xa8\x6d\x32\xbf\x51\xf6\x06\xf3\x1b\xfe\xcf\x26\xdc\x51\x68\xda\xcf\x34\xf1\x64\xef\x6f\xcd\xfb\xf5\x54\x4b\xdc\x15\xba\xd6\xc8\xb0\xbc\x71\x3f\xdb\x66\xfc\x2d\x6b\x6f\xb6\x79\xa0\x98\x33\xd4\xbd\xd8\x5b\x26\x84\x96\x9f\x47\x31\x67\x62\xdd\xd0\xf2\xf3\xfc\x2d\xb4\xfc\xbc\x09\xf1\x7b\x4d\x3b\x99\x40\x94\x7c\x0e\xe5\x75\xf0\x6e\xbb\xf2\x65\xb5\xaf\x1b\x0c\x26\x4f\xdc\xdf\xff\xbe\x27\x68\x6f\xde\x11\x35\x57\x9f\x0f\x83\xee\xd5\x80\xe3\x7a\xed\x05\xb4\xe6\x02\x57\xe5\x49\x4f\xf8\x2d\xf3\x5b\xd3\x3b\xec\x19\x26\xc7\x98\xab\x41\x17\x4d\x01\xec\x15\x74\xf7\x4b\x6c\xe9\x0f\x85\xde\x08\xad\xb9\x80\x5e\xfc\x0a\x8d\xb8\xc8\x95\xa9\x39\x46\x6d\x7a\x41\x7d\xb4\xec\x0e\x7a\xe2\xec\xa0\x92\xc5\x58\xc9\x2c\x98\x8f\xf0\x4b\x59\xd2\x7c\x24\xc8\x36\x03\xf7\xa1\x5b\xf0\x66\xab\xcc\xbc\x5f\x10\x49\x5a\x79\xcb\xbc\x9f\xdf\x7f\x0c\x48\xea\x2f\xfb\x06\x88\xc6\x7a\x93\x9d\x39\xa2\xc7\x4e\xcc\x12\xcc\x1b\x65\xbf\x31\xbf\x61\x0b\x6b\x6a\xe2\x16\x9f\x7e\xa3\x32\xc8\x26\x2a\xe7\x3d\x39\x5d\xf9\xe9\x37\x2a\xbd\x6d\xd2\x72\xf3\x1b\xb5\xe5\xe6\x37\xea\xce\x04\x61\xef\x06\xa6\xbb\x66\xf7\x9a\xa6\xdd\x6b\xb8\x35\xf9\x24\x93\xcf\xbc\xc3\x19\xf2\x81\x59\xcb\xd4\xa1\x5f\x77\x9b\x80\x9f\xc4\x6d\xaa\xde\xcc\x14\x18\x37\x0a\xa1\xf6\xac\x71\x1d\xb3\xde\xb8\x01\xa5\x9c\xad\xca\x2e\xcb\x30\xd4\x18\xaa\xee\xbc\xae\xde\xab\x36\x01\xb3\x9d\x09\xd4\x07\x71\x6b\xf2\xed\xcc\x11\xce\x90\x6f\x67\xea\xf5\x95\x52\x9b\xc4\x6a\xb5\x89\xad\x31\xfc\x65\x1c\x72\x63\xba\x71\x90\x53\xce\x22\xa3\xa3\x0f\xe3\x9b\x0d\x06\x4e\xe7\xb6\x98\x77\x37\xd9\x19\x1d\xb3\x98\x25\xcc\x6f\xd8\x92\xd0\x13\x67\xd1\xbd\x73\x4d\x0e\x73\x5a\x16\xf3\xe2\x2f\x74\x36\xb2\xee\x71\x23\x83\x22\xae\xe6\x06\xb1\x84\x39\x87\xf7\xe2\x70\x53\xd7\x32\x75\x9a\xf9\x9d\xac\xb8\xc9\x9c\xc3\xdf\x6b\xda\x9b\x97\x53\xcb\xc2\xee\x1c\x2e\x37\x1f\x9a\x76\xe7\x94\xe5\x30\xb9\x95\xed\x55\x3b\xcb\xa6\xa3\xb5\x03\x97\xbe\xa9\x24\xab\xbe\x31\xc1\x7e\x20\x77\xd9\xbc\x8e\xd9\x89\x68\x7a\xbf\x9d\x68\xe6\xbf\x33\x01\x1e\x34\xf5\xc2\x08\xaa\x3f\x70\xa4\x99\x15\x1b\x03\x22\xba\x29\x89\xc1\x80\xf2\xba\x35\xed\x67\xfa\x8f\x01\x19\x11\xb0\x51\x6c\x45\xb6\x6f\x19\x5f\x6b\xb8\x6d\xf3\xc6\x34\xab\x9c\x17\x9b\x8e\xf2\x2a\x6b\x6c\xa5\xd8\x3a\xbf\x72\x81\xf1\xa0\x89\x67\xf6\x9b\xda\x98\xdf\xb2\x60\x94\x95\x97\x1d\x69\x16\x4c\x84\x2f\xb5\x22\xdb\x9d\xb8\xeb\xfb\x6d\xd7\xac\x3b\x79\xa5\x9b\xcc\x6a\xe1\x7d\x8e\x11\xa4\x35\xdd\x36\xc3\xaa\xb5\xc5\x9a\x2c\xd5\x07\xfb\x9b\xf6\xdd\x23\xea\xef\x11\xb6\x39\x71\x57\xe6\xda\xc4\xd6\x14\x9e\x64\x02\xe2\xae\x14\xf1\x65\x8c\xef\x31\x20\x6d\x9f\x58\x7c\x6d\xe7\x71\x9d\x7e\xde\x76\xe0\x48\xaf\x61\xcf\xfe\xfe\xd8\xef\x0d\x35\x86\x93\x1b\x2b\xdd\x79\x37\x4b\x41\x1d\xa1\xaf\x4a\x73\x06\x2b\xba\x77\x0e\x2d\x3b\x7f\x4c\xdf\xae\x46\xcb\xcf\xf7\x1b\xa8\xef\xd0\x2f\xba\x4d\x3a\xb6\x03\xcd\x3d\x5f\xbd\xb5\xc9\x26\x42\xa3\xaf\xa2\x7b\xe7\xaa\x2e\xa0\xc9\x5d\x38\x39\x48\xc6\x23\x49\xad\xed\xeb\x2a\x7b\xd9\xd6\x4a\x77\xf4\x64\x97\xc6\xed\xec\x81\x77\xca\xf2\x0f\xd4\x95\xad\xc5\x26\x7b\xb2\xcb\x28\x43\x63\xba\x2b\x93\xb0\x59\x98\x5c\x2e\x9f\xc9\xe1\x7e\xc3\x3c\xcd\xbd\x51\x7e\xfd\x8d\xa0\xbc\x7c\x26\x9f\xd1\x73\x6b\xf3\xed\xcc\xda\xcb\xbf\xa9\x8d\xe3\xde\xb8\x9c\x5f\x53\x27\xea\x6f\x7c\x3a\x28\x2f\xa7\x52\xd4\x98\x1b\x64\xce\xd9\xad\x6f\xe2\xef\xf6\xe6\xf6\x3e\xdd\xcc\xdf\xc0\x09\x45\xdc\x90\x37\x31\xaf\xe5\xc9\x98\x5f\x55\xaf\x35\xfe\xba\x92\x68\x32\xee\x41\xff\xd6\xc1\xe9\xaa\x17\x57\xfc\x40\xbc\x62\x27\xb8\xf5\xd5\x1b\x98\x7c\xe3\xda\x6a\x59\xfd\x3d\xa2\x7c\xf7\x1b\xfc\x1d\x94\xd7\x2d\xf4\xf9\x39\x46\x94\x94\x92\xa1\x4a\xec\xcc\x7a\x52\xa7\x42\x69\x29\x99\x69\xca\xac\xc4\x26\xe7\xf7\xb4\xb3\xb4\x5a\xa4\xd1\xa6\x7f\x98\xac\xcd\x48\xcb\xd6\x28\x85\xe3\x44\x6d\x9a\x4e\xa3\x3a\x9b\xa8\x4c\x9f\x98\x85\x12\xb5\xe9\x59\x29\xe9\xd9\x96\xec\xf4\x24\x55\xf2\xc4\x24\x94\x9c\x9d\x9e\x98\x95\xa2\x6d\x75\x2c\xdc\xee\x01\x28\x25\x1d\x81\x4f\x42\x86\x4a\xb9\xc8\x03\x8e\xe2\x74\xf2\x18\x41\x58\x5f\xe0\xc7\x71\x65\xbc\xf4\x18\x49\x30\xcc\x31\x11\xc1\x94\x5d\x10\x11\xbc\x07\xc7\x5c\x20\x09\x9b\xc7\xae\xa0\x7c\xff\x5a\xfe\xac\x1e\x7d\xde\x81\x23\x23\x8e\x7b\xed\xf2\x1b\x4c\x4e\x0d\xf7\xeb\xcb\xbf\xa9\xed\xdf\x6b\x1b\xcf\xbd\x16\x77\x39\x87\x79\xad\x4e\xd4\xf8\xeb\x38\xee\x57\x97\x73\x98\x5f\xd5\x49\x1a\xf7\x54\x8a\xcd\xaf\xed\xfe\x55\x39\x7f\x17\x7f\x34\xfe\xba\x71\x4f\x33\x7f\x43\x2f\xcd\x9f\x55\x37\x93\xc9\x39\xfa\x45\x4e\xe5\x64\xfd\xc9\x8d\x95\x51\xbc\xd8\x52\x50\x19\xae\xae\xf2\xdc\xab\x3e\xfc\x6f\xcd\xd4\xf7\xc8\xf8\x45\xd5\xed\xb7\x0e\xd6\xbe\x73\x51\x99\x7e\x52\xdb\xfe\xfe\xb1\xbf\x66\x2e\x6c\x4d\x49\xef\x54\x26\x74\x64\x67\xb6\x27\x67\x58\x32\x13\x33\xd2\x6b\x74\x49\x2d\x3a\x6d\x47\xe6\xe2\xf6\x8c\xf4\x93\x1a\xed\x87\xaa\x27\xf8\x44\x6d\x47\x66\x4a\x6b\x96\xb2\x55\x99\xd5\xaa\x53\xa9\x3e\xd2\xa8\x5a\x33\xb3\x32\xaa\x97\x28\x5b\x94\x99\x27\x12\xd5\x19\xd5\x1a\x55\x72\x56\xb5\xf0\x95\xeb\xea\xb4\x94\xa4\x6a\x48\x57\x3d\x91\x85\x96\xa6\x64\xa9\xb5\xd9\x59\x28\x59\xdb\x9e\xf9\x64\x7a\x96\xf2\x6c\x86\x2a\x2b\x3b\x23\xfd\x41\xf9\x42\x6d\x66\xf6\x07\x78\x47\x9b\x8c\x92\x94\x59\x0d\x29\x1a\x8d\x6a\xa1\x52\x83\x16\x67\x2b\xd3\xb3\x52\xb2\x7a\xb4\x4b\x54\x19\xc9\x1a\xed\x19\x67\x95\x34\x55\x9a\x36\xa3\x67\x50\xf3\x99\x59\xca\x2c\x55\x9a\x2a\xbd\x33\x41\x99\x84\x32\xb3\x13\x32\x13\x33\x52\x74\x9d\x19\xaa\xa4\x94\xb4\x89\x49\x48\x99\x91\xa1\xec\x49\x4a\x59\x92\x22\x7c\x41\x3d\xe1\x49\xb4\x4c\x95\xd1\xe6\xa4\xdf\xa2\xd3\x68\x3b\xd5\x9a\x94\xd6\x25\x9a\x94\x56\xf5\xc2\x8c\x43\xea\x85\xed\xea\x44\xad\x46\x9b\x71\x4c\x8d\x4f\x25\x65\x28\xcf\x3c\x81\x37\xea\x2c\xe5\x07\x6a\x6d\x9a\x25\x43\x9b\x75\x2c\x33\x51\xa9\x51\x1d\xcb\x54\x6b\xb4\xca\x93\x59\x19\xca\x44\x4b\xba\xd6\xf9\x91\x91\xa6\x6c\x49\x49\x5f\xa2\xca\xc8\xb4\x24\x6b\x94\x99\x4d\x0e\x4a\x3a\x2d\xbf\x04\x5f\x9e\x92\xa6\x4a\x3b\xaa\xd1\xe2\xad\x36\x5d\x95\xd1\x9e\xa1\xca\xcc\x4e\xb3\x64\xa8\x12\x95\x9a\x96\xcc\x2c\x6d\x86\x25\x53\xa7\x52\x25\x1d\xd3\xa8\x3a\x17\x6a\xb3\xda\x32\xb2\x5b\x53\x1a\x33\x54\xc2\x89\x03\x82\x7a\x04\x95\xb5\x66\xa8\x4e\x65\x66\x69\x79\x6d\xeb\x52\x65\x4a\x27\x6e\x42\xa6\x72\x89\x25\x49\xd5\xa8\xd3\x2e\xb2\xe8\x32\x52\xd2\x3b\x13\xb5\xe9\x9d\x9a\x94\xcc\xce\x44\x8d\x4a\xd9\xbe\x50\xd5\x99\xae\x3a\x93\xa5\x4c\xa8\xc9\x6a\x4b\x6e\xcd\xd4\x25\xd6\x64\xa9\x55\xad\xca\xce\x74\x6d\x67\x66\x96\x8a\x07\x1e\xa2\x0a\xce\xe6\x9d\xb9\xf3\xf1\xaf\x7a\xcc\xe7\x63\x6f\x9e\xfd\xe4\xd3\xf3\xff\xf7\xe6\xde\x9b\x5f\x5c\xbf\x70\xbd\xf3\x7a\xc4\x8d\xa9\x37\x14\x37\xce\xdc\xfc\xf4\x66\xff\xad\x81\x5b\x86\xdb\x1b\x6e\xf7\xde\x5e\x7a\x1f\xdd\x8e\xbc\xbd\xf9\xf6\xba\x1b\x1b\x6e\x3c\x7f\x63\xeb\x0d\xfa\x46\xfa\x8d\xb5\x3d\xd9\x37\x98\x1b\xdc\x8d\xe6\x1b\xa3\x6e\xfe\xe5\xe6\x6f\x6f\x3e\x7d\x43\x75\x6e\x41\x8f\x5f\x4f\x53\x8f\xfa\xec\xb7\x22\xd4\xb3\xb6\xe7\x7c\xcf\xfa\xb3\x5f\xf5\xfc\xa2\xaf\xe9\xec\x3b\x67\xfd\x3f\xdf\xde\xd7\x79\x6e\xcf\xd9\xea\xee\xfc\xee\xdf\x9d\x57\x77\x57\x7e\x35\xfe\xeb\x77\xbe\x92\xc2\xc5\xcf\xfc\x3b\x4f\x7d\x62\xff\xac\xe2\xda\xdb\xdf\x28\xaf\x78\x7e\xf3\xe5\x37\xd7\xbf\x99\x6b\xfb\xad\x6d\x75\x5f\x77\xaf\xe5\x73\x8f\xbe\xcb\xbd\xc9\xbd\xcb\x7a\xcb\x7a\x77\xf7\x6e\x3b\xde\xb7\xcd\xd4\x57\xfc\xc2\x95\x62\xc3\x97\x25\xaf\x5d\xd3\x65\x7d\x92\x9c\xfe\x09\xdd\x76\x8d\xfe\xf5\xc5\xd5\xab\x3f\x51\xa5\x9f\x4c\xd6\xb6\xa7\xab\x9e\xe8\x14\x1c\x29\x5d\x97\xdd\x99\xa4\x6a\x49\x4a\x39\x95\xa1\x52\x9e\x5c\xd8\x9e\xa5\x7a\xa2\x53\x97\xf1\xfb\x94\xf4\xdf\x27\x2a\x35\xc3\xe7\xc2\x23\x7d\x47\xfa\x8c\xf4\x1e\xe9\x35\x52\x3a\xd2\x73\xa4\x64\xa4\xc7\x48\xf7\x91\x6e\x23\xc5\x23\x45\x23\xc9\x91\xc4\x48\x10\xc9\x44\xbe\x22\x1f\x91\xb7\xc8\x4b\x24\x15\x79\x8a\x24\x22\x0f\x91\xbb\xc8\x4d\x24\x16\x89\x44\xa4\x88\x10\x81\x58\x26\xf6\x15\xfb\x88\xbd\xc5\x5e\x62\xa9\xd8\x53\x2c\x11\x7b\x88\xff\x07\x2c\x2d\xec\x9a\xff\xbb\xe6\xff\xae\xf9\xbf\x6b\xfe\xef\x9a\xff\xff\x6b\xce\xff\xed\x76\xbb\xfd\x5f\x79\xfe\xef\x7b\x86\x21\x8d\x22\xd6\x0f\xf9\x9e\x61\xc4\x46\x37\x8d\xa4\xd3\x9c\xaa\x6e\x32\xa7\xd6\x18\xf4\x9a\xf4\x33\xd5\xc4\xc1\xd8\xe3\xbd\x24\xef\xd6\x2b\xe2\xdd\xf4\x5f\x6a\x62\xce\x94\xdb\xdc\x34\xd3\xce\xf0\x5f\x55\xc3\xc3\x67\x92\xcf\x94\xdb\x4e\x6b\x34\x67\xf8\xaf\x0e\xda\x49\x69\x4d\xfd\x6b\x67\x18\x38\x38\x40\xa6\xda\xc4\xc9\xc0\xdf\xad\x7f\xed\x4c\xdc\x65\x60\x88\xa6\xfa\xd7\xce\xe4\x01\x03\x26\x88\xbb\xfa\x03\xc9\x88\x4c\xc0\x90\x1c\xc1\xef\xfd\xf2\x4b\xcd\x4b\x67\x86\x51\xfb\xd5\x19\xfe\x6b\x80\x5b\xb7\xfa\xfb\xcf\x9f\x6f\x6b\x3b\x71\xe2\xc8\x91\xb7\xdf\xae\xae\x7e\xe3\x8d\x5f\xfe\x72\xd7\xae\x17\x5f\x2c\x2e\xde\xbc\x79\xfd\x86\x35\x86\xa7\x57\x2e\x5f\xbe\x74\x69\x46\x46\x5a\x7a\x4a\x8a\x4a\xa5\x54\x2e\x88\x9f\x3b\x77\xd6\xec\xe9\x33\x62\xa7\x4e\x9e\xfc\x58\x4c\x74\x74\xe4\xc4\x88\x09\xe1\xe3\xd1\xb8\xb1\x61\xa1\xa1\xc1\x21\x63\xc6\x04\x8d\x1e\x35\x6a\xc4\xc8\xc0\x11\x01\x81\xfe\xfe\x7e\x7e\x14\x25\xa3\x7c\x65\x6a\xce\x03\x9d\x1b\xd8\x8b\x76\x75\x73\x80\x76\x75\x1b\xd0\x2f\xbb\x9b\xf8\x2f\x7a\x3d\x9a\xf9\x4f\x0e\xc4\x73\xc4\x6e\xa9\xd1\xc7\xe8\xdd\xeb\xcd\x11\x48\x85\x6b\xa8\xba\xdd\xbd\x23\x7d\x38\x1f\x4b\x7c\xe5\xd7\x1c\xec\x96\xf6\x4a\xf9\x73\xbd\x5e\xcd\x7c\x97\x9e\x21\x39\xa9\xca\x9b\x91\x70\x5e\x2a\x1f\xc6\x93\x23\x77\x4b\xcc\x52\x0b\x61\xeb\x53\x73\x5e\xe8\xdc\x00\x27\xc5\x1c\x88\xdd\x52\x81\xc7\xae\x6e\xce\x13\x17\x4a\xf0\x1e\x89\x76\x75\xa3\xc7\xed\xa6\x0a\xcd\xd5\x01\x74\x6e\xc0\xc4\x6a\xae\x0e\x18\x65\x8c\xaf\xa3\x98\x03\x95\x2f\xe3\xcb\x7a\x24\xfb\x56\x8e\x37\xb1\xe8\xea\x00\xb7\xc0\xaa\x33\x9d\xcc\x07\x74\x75\xc0\x74\x10\x5d\x1d\xd8\xcb\xbb\x99\xcc\xe8\xea\x40\x7d\x47\x37\xba\x3a\x50\x4e\x75\x57\xcb\x34\x4c\x77\x5d\xfd\x91\xf7\xfe\x7c\xf8\x4f\xef\x1e\x32\xb3\x60\x74\x37\x7a\x94\xef\xe5\x7d\xd9\x31\xd8\xc8\xee\x46\x0f\x76\x1c\xde\x91\x18\x3d\x59\x09\x7a\xf5\xce\x81\x29\xcd\xbc\x37\xe7\x15\xed\x63\x0b\x8c\x96\xf0\x14\xe3\x83\x5e\xbe\x15\xde\x4d\xba\x47\x9a\x49\xb2\x7a\x16\x54\xc1\x61\xaf\xdd\x09\xfd\xe8\x4f\xf7\x1b\xa7\x50\xdf\x56\x9e\xd4\x9b\xb2\xd8\x2e\x4d\x5d\x57\xd9\xd9\xb8\x2a\xfb\xe1\xb4\xef\x3e\xda\xd3\xd6\x6f\xbb\x8d\xc6\x5e\x47\x59\x5d\x55\x04\x8a\xc1\x9f\x07\xce\xea\xd1\xf7\xf7\x4d\x23\x91\xf5\x3e\x33\x19\x7d\x7f\x9f\x8d\x40\x03\xf7\xeb\xee\xa2\x81\xfb\xec\x3c\xf4\xf5\x7d\x9b\xaf\x6a\x32\x33\x19\x1d\xbd\xcf\xce\xa8\xb4\x69\x22\xed\x5f\x7e\xf9\x65\xc3\x7c\xdb\x57\x6a\xf4\xb8\x1d\xfd\x72\xc0\x3c\x5f\xd0\x02\x96\xaf\x06\x5d\x1d\x30\xe0\x23\x13\x3e\xc2\x0a\x12\x36\x15\x77\x45\xaf\x7c\x2f\x32\x69\x2a\xee\x88\xf4\xa6\x13\x42\x6b\x4c\x80\xf8\x2e\x93\x1d\xf1\x5d\x9a\xb9\x76\x06\x52\xec\x0c\xc1\x2d\x60\x3c\x18\x4f\xc6\x4b\x50\x80\xc4\x28\x3d\x10\xcf\xc1\x6e\x49\x13\x7f\xaf\xd7\xb3\x99\xbf\x75\x20\xde\xec\x6e\x01\x5b\x80\x5e\xf3\xec\xe7\xe8\xe5\x5b\x75\xd3\x67\x7c\x0b\xe8\xe5\x5b\x41\x1a\x30\xc4\x8d\x6e\x05\xeb\xcc\x59\xe3\xe6\xcd\xb7\xce\x9e\x13\x7d\x56\x94\x3c\x37\xf2\xd2\x19\x51\x5c\xaa\x69\xce\xda\x0e\x72\x52\x27\x49\x7a\xc4\x6e\x05\x8e\x38\x00\x28\xf8\xb2\x60\x02\xd3\xfb\xd8\x2e\xa3\x0e\x8c\x44\xc1\x97\xd1\xab\x03\xe8\x95\x5b\x8f\xcd\xaf\x9a\xe7\x73\x9a\xfc\x00\x34\x86\x6b\xa0\x79\xf6\xf3\xaf\x3f\x26\xbf\x1d\x5d\x07\x63\x8e\xc3\xc4\xb3\xa2\x55\x7d\x6b\x16\x4c\x98\x37\x2e\x24\xa6\x6a\xfe\x63\x7f\x16\x79\x3c\x7b\xcc\xe3\xbb\x0f\x63\x0a\x83\xa3\x20\x64\xcd\x7d\xc9\xe5\x85\x3d\xa4\xe7\x39\xf2\xbb\xdb\x6b\xdc\xee\xdf\x5e\x78\xde\xfd\x76\xc8\x0a\xf8\xd8\xfd\xba\x24\x60\x60\xc0\x5d\x16\x1a\x01\x17\xdc\x3d\x6d\xee\x47\x43\x37\xc3\x31\x4f\xa2\x6e\x3e\x71\x1a\xbd\x7c\x2b\x24\x1d\x5a\xe2\x46\x37\x43\xfe\x0e\x40\x9f\xd8\xd0\xcb\xb7\x5a\xa2\x76\x80\xde\xf4\x31\xdb\xa9\xa9\xeb\xaa\x9e\x51\x0f\xa4\xb5\x96\xf7\xee\x9d\x51\xe5\x71\x78\xfe\x1e\xb2\x99\xba\xab\x67\x49\xf3\xfc\x7d\x5e\x50\x4e\xdd\x41\x15\x11\x22\xf4\x4e\x87\x1a\xbd\xde\x61\x40\x93\xf9\xb7\xc7\x8b\xf4\xe8\x6e\xbb\xa6\x84\x3f\x38\x41\x94\x8a\x2a\x3b\xd0\x16\x1e\xbd\xde\xb1\x4b\xbd\xb7\x16\xbd\xd3\x51\x63\x40\xab\x4f\x0b\x55\x2a\x3b\x34\x14\x8f\xee\xb6\xa3\xc5\x1d\x68\x5e\xbb\xf3\x2a\x7c\xf0\xba\x70\xf0\xea\x78\x11\x3b\x0d\xfd\xb2\xa3\x62\xa2\x88\x8d\x42\xbf\xec\x50\x1f\x8c\x12\x31\x63\x0e\x46\x8b\x98\x60\x16\xa1\x5f\x76\xd8\xe6\x54\x41\xc3\x18\x1b\x59\x37\x55\x5a\x29\xea\x0d\x0e\xaa\x31\x8f\xc9\x1b\x53\xdb\x64\x1e\xb3\x3e\x5a\x54\x63\xd0\xb3\x23\xcd\xa9\xfc\xc8\x72\x73\xaa\x40\xc8\xcd\x9c\x5a\x8b\x3b\xa4\x4b\x41\x57\x88\xca\xab\x1a\xc3\x35\xd6\x07\xfd\xb2\xc3\x7a\xbc\xee\x5b\x7c\x1a\x3b\xde\xc0\x0f\x26\x60\xe6\x57\x44\x89\x82\xf2\x5a\x6b\x4c\x12\x66\x41\x45\xb4\x28\xaf\xad\x6e\xc2\xc9\x66\xf5\xe5\x8f\x0c\x75\xa1\xc6\x78\x46\xde\xc4\x93\xf9\x84\x31\x95\x59\x64\x6c\x61\x4e\x61\xe7\x14\x21\xd2\xfe\xf6\x78\x11\x17\x29\xe5\x26\x46\x8b\x26\xb9\x45\x4a\xa5\xd2\x8a\x70\x11\x37\x31\x35\x35\xda\xc3\x27\x5c\x54\x11\x2e\x3a\x38\x41\x24\x5d\x3f\x41\x24\xad\x6d\xe6\x62\xa3\xe9\xfe\x54\xfe\x7e\xc5\x38\xd1\xae\xa0\xf5\x13\x44\x95\xa2\x6b\xe3\x44\x15\x48\xa4\x2f\x1b\x63\x0c\xae\x4d\x4d\x4d\x4d\x65\x32\x77\x45\xcb\x6a\xff\xfa\xd5\x69\xa3\x2e\x45\x56\xfb\xd7\xaf\x4f\x37\x19\x33\xfe\x38\x41\x54\x05\xaf\x4e\x12\xbd\x39\x86\x59\x5c\xb5\xb3\x2c\xab\x2c\xfb\xed\x89\x22\x2e\x2b\x2e\x4f\xc7\x64\x55\x8a\xd1\x59\x3e\x88\xcb\xce\xcb\x60\xb2\x2b\x45\xa8\x87\x6f\xe6\x2f\x73\x8b\x53\x53\x53\xf9\x8e\xde\x31\x3c\xd9\x1b\xfc\xe6\x18\xde\xfa\x9f\x22\x7f\xfc\xff\x4d\x1e\x55\x76\x70\x13\x63\xbe\x3c\xcd\x87\xff\x7f\xec\xbd\x0f\x7c\x13\x55\xd6\x3f\x7c\x67\xa6\x69\x93\xb4\x49\xc3\x0c\x90\xa4\x94\x72\x09\x50\x5a\xad\x98\xb4\x50\x4a\x40\xa0\xd0\x40\x03\x69\x8b\x4d\x50\x59\x75\x8d\xcf\xd2\xb5\x75\x75\x5d\x94\xf7\xf9\xf7\xfe\x3e\xbf\x45\xb7\x13\xba\x3c\x9d\x6e\xeb\x23\x08\x6a\xca\x10\x18\xe8\x94\x4e\x4d\x8a\x08\x2d\x54\x5b\x69\x6a\xd2\x3f\xe9\xd0\x16\x14\x57\x77\x51\x17\xb6\xf8\x28\x3b\xae\xba\xb0\x28\xdb\xf7\x33\x33\x69\x29\x08\xea\xee\x67\xdf\xc7\xdf\xef\xd9\x7c\xe9\x27\x93\xdc\x7b\xee\xb9\xe7\x9e\x73\xe7\xce\x0c\xe7\xcc\xb9\xf1\xe9\xfe\x94\xac\xcf\x78\x41\x51\x31\x23\xcf\x8f\x57\xcc\x2a\x64\xd2\x2b\xfc\x7e\xb4\x42\x20\xd3\xcb\xfd\x68\xc5\x8c\x1f\xa7\x57\x7c\x45\xce\x75\x1b\x98\xb9\x15\x71\x62\x83\xcf\xe2\xd3\x6b\x8d\x15\x67\x0d\x59\xf3\x4e\x0a\x04\x93\x5e\xb1\xce\x2e\x08\xa8\x5d\x20\xd3\xb9\x74\xac\x16\xad\x38\xfb\xe3\xf4\x5a\xbe\x90\x05\x14\xc4\xa8\x99\xa2\x2a\xcb\x0b\xf3\x3e\x81\x58\xe1\xb6\x4f\x66\x62\xa4\xd3\xaf\x2e\xb7\x8f\x56\x20\x85\x2c\x38\xe7\x24\xef\x26\xd7\x97\x93\xeb\x48\x57\x39\x05\xb1\x9a\x99\xd8\x4e\xc3\x27\x26\xac\x36\xce\x3e\x5a\xf1\x17\xb2\xb4\xda\x84\xfd\xd8\x99\x77\x6e\x5d\x23\x3b\x7a\xee\x6e\x72\x7a\xd3\x1c\xcc\xaf\x50\xc3\x2a\x3e\x8f\x71\x95\x95\x92\x2e\x66\xfd\x05\x40\xae\x0f\xa4\xdb\x52\xe7\x98\xef\x4e\xaf\x4b\x1f\xe1\xe3\xce\x4f\x17\x7e\xc2\x38\xfd\xef\xc0\x3f\xf3\x06\xc6\x25\x6a\x82\x59\x5f\x76\xf7\xba\x33\x4f\x3f\x53\x59\x55\x4b\x77\xa4\x8e\xfe\xe5\xca\xe7\x1f\xbf\x3f\x1c\x7c\x65\x0f\xf5\xaf\x0f\xdb\x2d\x86\x51\xf1\xf9\x9f\x85\x54\x3a\xc6\xdd\xdb\xc1\x39\x3b\xb8\x75\x1d\x2c\x20\x53\xb9\x74\x71\xaa\x82\xca\x14\x26\xb5\x2e\x05\xfa\xf8\x10\xff\xa7\xf3\xd3\x98\x69\x99\x33\xf8\x8b\x6e\xca\x84\xd5\x40\xac\x7a\x26\x56\x98\xd9\x41\xa6\xaf\x59\xa3\x48\x27\xd3\xcb\xc9\xb9\x6a\xb5\x3a\x7d\xae\xf8\xf7\xe3\x74\x66\x6e\xe6\x0c\x4d\x3a\x46\xce\xdd\xd6\x01\x04\x05\x3d\xab\x22\x2e\x74\x21\xc1\xff\x65\xf5\x1c\xac\xb1\xfd\x23\x9e\x34\xef\x5c\xc3\xcd\xc6\xc8\x54\x7f\xa6\x1b\xce\xe3\x99\xd4\xbb\xd3\x65\xf1\xdd\xba\xd9\x8c\x79\x8d\x5f\x61\xef\x20\xcd\xee\x2a\x1d\x4a\xcf\x65\x3b\x48\x73\xf5\x1c\x8c\x49\x55\x87\x3b\x74\xf1\x4c\xaa\xfd\xe7\x64\xaa\x9b\x31\xab\xed\x5b\xcc\xef\xb2\x4f\x87\x3a\x32\x6a\x7f\x4b\x03\xff\xaf\x0d\xcc\xdd\x99\x71\xc2\x5c\xf6\xe7\x73\xcc\x96\x74\x7e\xda\xc5\xdb\x30\xf1\xab\x0e\x97\xcb\x93\x65\x05\xf1\xd8\xc5\xdb\x30\xb1\x1b\xe6\xee\x32\x67\x26\x16\x46\x1f\xf5\xff\xca\x6c\x36\x4c\x7c\x16\xd6\x6b\xf5\x1a\x7d\x92\x3e\x51\xaf\xd6\xab\xf4\x4a\x7d\x82\x3e\x5e\xaf\xd0\xc7\xe9\x31\x3d\xaa\x47\xf4\x20\x4e\x11\x17\x17\x87\xc5\xa1\x71\x48\x1c\x50\x24\x2b\xb4\x0a\x8d\x22\x49\x91\xa8\x50\x2b\x54\x0a\xa5\x22\x41\x11\xaf\x50\x28\xe2\x14\x98\x02\x55\x20\x0a\x10\x9f\x1c\xaf\x8d\xd7\xc4\x27\x7d\x7f\xcf\xf5\x31\xc4\x10\x43\x0c\x31\xc4\x10\x43\x0c\x31\xc4\x10\x43\x0c\x31\x5c\x8f\xeb\x77\x83\x87\xa5\xb6\xbb\xd7\xdb\x4b\x6d\x4e\xe8\x2a\xcc\x97\x37\xeb\x5f\x65\x77\xd8\x4c\xe0\x47\xaa\xdf\x25\xb4\x59\xdb\xa2\xfb\xff\xcb\x79\xed\xe0\xca\x52\x5b\xbe\xcb\x66\x8a\x16\xc2\x15\x36\xb8\xae\xd4\xe6\xb4\x15\xbb\x60\x49\x31\x94\xd8\x16\xd8\x9d\x6b\x4d\xe0\x09\xd5\xc5\x84\xb1\x8d\xfb\xbd\xaa\xcb\x09\x6d\xa6\x75\x0e\x5b\xbe\xd3\x06\x57\x96\x14\x3b\xd7\x3b\xe4\x7e\x0a\x4a\x9c\x52\xee\xbc\xa8\x24\x45\xf6\xe2\xd5\x26\xf0\xba\x0a\x55\xb6\x59\xdb\x4c\x45\xf9\xc5\xeb\xf3\x1d\x70\x55\x49\xa9\x1c\x5b\x02\x67\x99\xe4\xad\xed\x41\xaf\x2a\x49\x39\xc6\x1b\x80\x8c\xbf\x7a\xfc\x7d\xff\x2d\xfb\xff\x3f\x77\x8b\xfd\xff\xaf\x57\xe4\x78\x12\x45\xbf\x32\x1b\xb4\x15\xcc\x36\xad\x28\x5d\x5f\x7c\x03\x0d\x78\x53\x79\xd3\x8c\x8a\x1f\x28\xff\x88\xed\xb8\x31\xa1\xa2\x9c\x3f\xf1\x4b\x25\x9f\x20\x76\xce\xc9\x2a\x3b\x39\x90\xdb\x75\x30\xdb\x3c\xdf\x0c\xd2\x55\xef\x5c\xb7\xf9\xad\x41\x6b\x88\xbd\xff\x1f\x43\x0c\x31\xc4\x10\x43\x0c\xff\x00\x18\x1d\x1d\xfd\xbe\x45\xf8\x5e\xb1\xd6\xe6\x72\xd9\xa0\xdd\x09\xef\x2d\xb5\xbb\xc4\x1b\xd8\x12\x97\x6d\xa5\xcb\x56\x30\x0f\xc2\x52\x5b\x51\xc9\x3d\x36\xcd\x75\x15\xd0\x95\xbf\x62\x1e\x35\x7a\x0d\x5f\x8e\x5e\x8f\x2f\x47\x47\x11\x37\x02\x00\x70\x6b\x01\x2e\xf5\xe0\x46\x00\xf2\x87\xb7\xbf\x56\x28\xb2\x75\xd9\xa4\x70\xdc\x35\xf9\x45\x36\x27\x2c\x9d\x07\x0b\xd7\x3b\x5d\x25\xc5\xb0\xc0\xb6\xd2\x56\xb4\xc2\x56\x0a\x2d\x0b\xb2\xa0\x65\xd1\xc2\x3c\x98\x21\xdd\x4d\x17\xd9\x9c\xce\xfc\xd5\x92\xb4\xab\xec\x0e\x87\xad\x34\x0b\xde\x5b\xb8\x01\x96\xda\xf2\x0b\xa0\xdd\xb5\x2c\xf3\x0f\x37\xc8\xf2\x5d\x7e\x8b\x77\xe8\x92\x0a\xf2\x8b\x0b\xa4\xdb\x77\xa7\xe6\x7e\x39\x32\xf9\x41\xe8\x2a\x81\xa5\xb6\x15\x25\x25\x2e\xf1\xe6\x9c\xd6\x24\x24\x24\x40\xb8\xbe\x38\x7f\x85\xc3\x26\x57\x89\xdd\x16\xe5\xaf\xb6\xcd\xd3\x50\x72\xa5\xf4\x4b\x0a\x60\x8e\xde\xcc\x43\x98\x21\xdf\xbe\x66\x8a\x42\x17\x97\xb8\x34\x9a\xfc\x7b\xf2\xed\x0e\x91\xc7\x3c\x08\x57\x16\xda\x56\xae\x85\xf6\x62\xa7\xab\x74\xfd\x4a\x97\xbd\xa4\xd8\x39\xce\xea\x5a\x3f\x92\xfe\xe7\x41\x38\x2e\x69\xd1\x7a\xa7\x0b\xae\xb0\x69\xec\xc5\x76\x97\x3d\xdf\x61\xff\x81\x4d\x94\xbc\x64\x9d\xad\xd4\xb1\x61\x9c\xe9\x18\xb5\x46\x7c\x66\x90\x6b\xc5\x8e\x6c\xa5\x62\x37\xf3\xa2\x9d\x14\xd8\x9d\xb0\x30\x5f\xbc\x53\xb7\x15\xc3\xf5\xeb\x0a\xf2\x5d\xb6\x82\x2c\xb8\xa1\x64\x3d\x2c\xca\xdf\x20\x9b\x1f\xda\x5d\x50\x7a\x12\xb2\x3b\xa1\xcb\x5e\x64\x9b\xa7\xd1\x40\x68\x5f\x25\x11\xdd\x6b\x77\x16\x8a\x12\x46\x9f\x87\x4c\x30\xbf\xb8\xc4\x55\x68\x2b\x95\x3a\xbf\x43\x23\x76\x9f\x25\xeb\x14\x8e\xe9\x54\x6a\x2e\x11\xdd\x6b\x77\xda\xc6\x2a\x6d\xce\x95\x92\xb6\x6d\xf7\xd9\x5d\xe3\xdc\xa8\x9b\xf4\x54\x6a\x73\x95\x6e\xb8\x81\xe5\x5f\xc3\x11\x46\x75\x00\xf3\xc7\x52\x94\x97\xc2\x75\x8e\xfc\x95\xd2\x30\xed\xc5\x1a\xe9\x41\xcc\xee\x5c\x2b\xbf\x15\xe0\x2a\x29\xdd\x20\x72\x97\x06\x2f\x8e\x3f\xfa\x38\x08\x8b\xf3\x8b\x6c\xf2\x13\xe2\xbd\x76\x87\x43\xb4\x85\xc4\xa4\x40\x0a\x66\xb7\x17\x4b\x84\xd2\x5c\xb0\x8a\xcd\x21\xad\x81\xd1\x5e\xc6\xf8\x4b\x76\x74\x95\x88\x8f\x8c\xb2\x6c\xb6\x02\x78\x7d\xff\xa5\xf6\x7b\x64\x5d\x5f\x3f\x58\x78\x6f\xa1\xad\x58\x9a\x7a\x1b\x34\x9a\xe2\x12\x97\xcd\x3a\xae\xa2\xfc\x62\x71\x58\x05\xf6\x55\xab\x6c\xa5\xe2\x33\xe8\xb8\xa4\x59\x13\x74\x32\x8f\x92\xc6\x73\x4d\x8a\x6b\x33\x35\xfa\x9c\x75\x47\xf4\x49\x0b\xae\x77\xd9\x1d\x76\x97\xa4\x80\x6f\x4e\xa1\x6e\x59\x94\x67\x86\x50\x1c\x68\x14\xf9\x0e\x07\x94\xc8\x9d\x50\x7c\x1e\x2e\xbd\xc7\x56\x30\x4f\xa3\xd1\x8c\x53\x64\x14\x97\xdc\x2b\xa5\x6f\x17\x9f\xdd\x44\x01\x24\x5d\x65\x52\x9a\xe8\x63\xb1\xbd\x78\xdd\x7a\xf9\xa1\xd8\xb4\xba\xd4\x66\x13\x9f\x14\x4d\x63\xcf\xc5\x73\x9d\x9a\xf1\x81\x59\x69\x8d\xa6\xd4\x56\x24\xaf\x15\x92\x39\xc6\x67\x62\x41\x89\x4d\x3a\xdf\xa2\x83\xd1\xdc\x9c\x59\x16\x2c\x39\x2f\xf0\x7f\x38\xff\x29\xff\x5f\xee\x42\x78\xdf\x57\xe5\xe4\x1c\x37\x4b\xfb\x00\xfc\xe4\xea\xd9\x34\x21\xbe\xdd\xa2\x1d\xe1\x3f\x93\xe3\x6e\x04\x32\x97\x9d\x46\xe6\xb1\x57\xc9\x85\xe4\x22\xea\x73\x8c\xdd\x4a\xe6\xb8\x61\xd2\xd5\x30\x25\xc4\x87\x5f\x14\x30\xfe\x33\x83\x7b\x9b\x90\xe5\x11\x68\xd0\x0a\xd0\x50\x98\x16\x2e\x87\x3b\x6b\x53\x7d\xc0\x6b\xd1\x8e\x9c\x4d\x13\xd2\x5a\x01\x1a\xa6\x04\x4d\xb8\x49\x50\x75\x09\x82\x22\xc4\x9f\xcf\x73\xb3\xb4\x5c\xcb\x5f\x36\xb8\x59\x94\x47\x59\x04\x1e\x52\xb1\x5a\x7a\x23\x3c\x83\xf9\xa7\x35\x55\x68\x43\x1d\x3a\x5e\x41\x83\x8b\xe5\xda\xea\x0a\xed\xc5\xc7\xb5\xdc\xe3\xda\xf0\x42\xfe\x3d\x83\xbb\x30\x8c\xf0\x29\xf0\x43\x8c\xfc\xb4\x52\xa0\x91\x80\x40\xad\xd3\x52\x3f\xd4\x86\x02\x02\x75\xb7\x96\x7a\x48\x4b\x4f\x6a\x2d\xd1\xee\xda\xa8\xad\xd2\x5d\x2a\xa7\x7e\xa6\x75\x5f\x56\x55\xa9\xdb\xd4\x0f\x27\x7e\x92\xf8\x7c\xd2\x85\xa4\x74\xcd\x4a\x4d\x8d\xe6\x33\xc9\x20\x40\x39\x1a\xcf\x26\x41\x85\x0a\xce\x52\xb1\x00\x7e\xa8\x84\xbf\x54\xd5\x4e\x63\x95\x50\xa1\xe2\x40\x6a\xd8\x21\x24\x3b\x56\x29\x3f\xfa\xe8\xa3\x8f\xd8\x04\xf8\xa1\xd2\x71\x58\xc9\xc5\xa7\x15\x69\xd2\xec\x3f\xe5\x93\xb9\xd7\xe6\xdb\xe3\x78\x25\xf5\xe3\xdb\xa9\xff\x22\x04\x25\xab\x94\x09\x58\x35\x54\xa8\x58\x44\x64\xf5\xe8\x55\x58\xa8\xf2\x5f\xa4\xa7\xb7\x5a\xb4\xbb\xfe\x9f\xdb\xab\x74\x97\x58\x54\xac\x44\xc5\x4a\x8d\x8a\xc5\xc4\xe3\x22\x95\xbf\x0f\x92\xaa\xda\x35\x52\x43\x6e\x93\x56\xed\xc7\xd4\xb5\x71\xac\x8a\x47\x59\x35\xfc\x50\xc9\x2a\xa2\x54\x32\x67\xc7\x4f\xa2\x3d\xc4\x47\x8b\xbf\xe4\xca\xb4\x6b\xd6\xac\x59\xa3\xea\x20\x3f\x65\x01\x29\x3c\x26\x00\x36\x5e\x24\x88\x8b\x12\x9c\x72\x14\x2b\xd5\x8d\xed\x1f\xa8\x48\xa1\xfd\x43\x15\xf9\x29\x0d\x02\x42\xa1\x6a\x0b\xfc\xe4\x6a\xb9\x59\x39\xf1\x5a\x68\xd4\x1a\x35\xc6\x24\x63\xa2\x51\x6d\x54\x19\x95\xc6\x84\xef\xe7\x8a\x1c\x43\x0c\x31\xc4\x10\x43\x0c\x31\xfc\xff\x0d\x7e\x30\x38\x34\x44\x0f\x06\x87\x4f\x0d\x46\x32\x57\x63\xa5\x5d\xbd\xcb\x11\x95\x12\x95\xf2\x21\x23\x0a\x1c\xbd\x1f\xe1\xbf\xa9\xd2\x72\x93\x32\x77\x94\xf0\x69\x24\x5a\xe8\x41\xee\x47\x92\x90\xfb\x91\xa1\xef\x7b\xb0\x37\x41\x34\x37\x58\xd7\x60\xf8\x74\xb0\x8d\xce\x5c\x8d\xf5\x6d\x0a\x20\x00\x0b\x6d\x6a\x41\x01\xf6\xc0\xa1\x37\x10\xec\x7e\x64\xd5\x1b\x48\xef\xa6\x79\xcb\x72\x03\x60\xf9\x93\x98\xbb\x37\x35\xb0\x05\xcc\x16\x6b\x36\xe6\x06\x84\x65\x65\x7e\x00\x30\x77\xef\xd4\x00\x05\x66\x1f\xea\x43\xb0\xde\x4d\xbd\x44\xc0\x2f\x16\xa5\xf6\xa5\xf5\x1a\x43\x12\x65\x64\x53\x2f\x62\xea\x43\xd6\xb5\x4c\x06\xd8\x3f\x45\x6c\x19\xf4\xd7\x90\x89\xdd\x8f\x98\x4e\x23\x52\x26\xed\x57\x97\x01\x6c\x5d\xcb\x54\x80\x3d\x9c\xd1\x15\xec\xee\x3c\xd5\x37\x4c\xb7\x8b\xa2\xdd\x8f\x24\x9d\x45\xdc\xfd\x43\xfa\xa1\xa1\x39\xf7\x23\x49\x1f\x21\xee\xfe\x2e\xfd\x50\xd7\x9c\xfb\x91\xe9\x9f\xcb\xba\xc6\xdc\x5d\xbd\xcb\x6f\x0b\x20\x60\x56\x00\x01\x4f\x2e\xca\xe8\xca\x9c\xf3\x23\xc4\xf2\x17\xe4\xe1\x8c\x70\x64\x28\x38\x38\x4c\x67\xda\xba\x7a\x97\xdb\x32\xe8\xae\xf0\x50\x2f\xdd\x19\xe9\xa2\x1b\xb7\x6e\xcd\x44\xca\x6b\x91\x27\x02\x04\x18\xcf\xe3\x3d\x61\x64\x3f\xc2\x9c\x19\x5d\x03\xf4\x99\x81\x53\xf4\x5b\xe1\xa1\x10\x3d\x3c\x40\xf7\x77\xf6\x06\xe9\xce\xc8\xc0\x70\x28\x38\x48\x9f\x18\xe0\xcf\xbc\x9e\x99\x1e\x5e\x8e\xb9\x17\x87\x97\x3f\x39\xd5\x0f\xc0\xec\x43\xfb\x10\xcc\x1d\x9e\x28\xc7\x99\xcc\xd9\x81\x46\x80\x18\x5e\x40\x26\x96\x5b\x33\x22\x99\xb3\x5b\x6a\x11\x44\xbf\x0f\x19\x4b\xc1\x5d\xf4\x2a\x8d\x62\xaa\xd6\x1f\x00\xec\x6e\xa4\xb0\x19\xf9\x11\xb6\x4e\x34\xc7\xc3\x61\x51\x68\x7a\xa8\x6f\x60\xf8\x3a\x23\x1d\x49\x00\xd8\x03\xaf\x9c\x46\xb0\x7f\x8a\xac\xbe\x26\xfd\x03\xaf\x88\xc6\xe9\x2c\x8b\x4c\x0e\xe8\x00\x76\x3f\xb2\xfc\x28\xf2\xc0\xa1\x1b\x89\xd6\xbd\x12\x27\x2a\xb8\x77\xf9\xcf\x32\xba\x4e\xf1\x7d\xe1\x13\x9d\xc3\xc1\x4c\xec\x81\x43\x67\x11\xec\xc1\x37\x83\xc3\x74\xd7\x29\x5e\xd2\x12\xb2\xc0\x85\x3c\x71\x54\x29\x5a\xc4\x10\xd5\x90\x68\x9f\x87\x33\xde\x1a\x0c\x0f\x87\x23\x6f\x66\x4e\xe0\xf9\xb0\x6c\xd8\xcc\xd5\x88\xfe\x87\x48\xd1\x91\x6e\x14\x7b\x90\x16\xc9\x82\x74\x27\x1d\x3a\x15\xe9\x45\x0c\xe5\x13\x78\x3d\x3c\x36\x0d\x32\x11\xe2\x49\xc4\x3d\x6f\xd9\x91\x30\xfa\xa4\xbe\x05\x05\xb3\x03\xe7\x01\xb2\xe8\x7f\x21\x4f\x04\xf0\xeb\x7a\x6c\x94\x40\x9f\x8a\x74\xbe\xd1\x17\x14\x2d\x21\xf3\x96\x8b\xb7\x6e\xcd\xc4\x1e\x12\x95\x99\xe3\xf9\xf6\x86\x83\xc1\xce\x2e\xb9\x5d\xd1\x91\x13\xa2\x94\x52\x41\x54\xc8\x69\x71\x63\xc2\x4c\x15\x85\x69\xf1\x20\xd8\x83\xc1\xc1\xc1\x81\xc1\x3d\x88\x41\x8b\x3c\x71\x58\x71\x13\xf9\x0d\xe3\x4d\x02\x08\x90\x6c\x6a\x34\x21\xee\xee\xe1\xd9\x2d\x6b\x10\xec\xc1\xc8\xc0\x30\xdd\x1d\x1e\x1c\x1a\xa6\x07\xbb\x90\xf4\x2c\xa4\xeb\xdb\xb5\x7e\x67\xee\xcd\xb5\x1e\x8e\x84\x87\xc3\x9d\x7d\xe1\x77\x44\xd5\x5f\x4b\x3c\xbf\x60\x39\xf2\x70\x46\xa5\x58\x49\xbf\xfd\xf6\xdb\x4d\x43\x99\xab\x86\x86\x6c\x19\x4d\x5d\x99\xab\x86\xba\x6c\x19\x4d\xa7\x33\x57\xcd\x5b\x76\xa4\x07\x7d\x12\xeb\x1e\x96\xa6\xce\x43\x2d\x2e\x04\x49\x5f\x83\x74\x4d\x1c\x06\x76\x13\xdb\x44\x07\x68\x7e\x0d\x14\x1d\xe9\x40\xb1\x8d\x47\xfa\xd1\xb2\xa1\x21\x69\x62\x6d\x3c\x12\x41\xcb\xfa\xc7\xbe\x0f\xa0\x65\x43\x5d\xd8\xc6\x23\x3c\x5a\xd6\xdf\x85\x4c\x0a\x81\x27\x02\x93\x00\xb6\xf1\x90\x09\x94\x05\x74\x00\x51\x0d\x02\x79\x35\xcc\x7e\x17\x3c\x9c\xc1\x71\xb4\xbc\xf0\x1e\x90\x17\xd7\x03\x74\x6f\xf0\x8c\x68\x98\x37\x82\x6f\x86\x23\xd2\x49\x45\x73\x9c\xb8\xe4\x86\x97\x23\xaa\xf7\xa3\x4d\xe7\x9e\x07\x92\xe6\xe8\x81\xc1\xf0\x9b\xe1\x48\x67\xdf\x44\xcd\x89\x65\xb2\xea\x6e\x13\xc0\x35\x23\x4d\x50\x9d\x68\xe3\xeb\xb5\x36\xf5\x8a\xbc\xfe\xc9\xe9\xe2\xa5\x35\x61\xcc\x2a\xe1\x81\x08\xcd\x0f\x0e\xbc\x39\xd8\xd9\x9f\x89\xfd\x08\xfb\x11\x32\xf5\x5f\x65\x0d\x9c\x18\xda\x34\x6f\xd9\x91\x08\xfa\xe4\x14\x71\x58\xd3\x9f\x01\x1b\x8f\xf4\xa2\x65\xf3\x96\xb5\xf4\x83\x27\x71\x51\xb5\x0f\xbe\x71\xaa\x7b\x68\xb8\x73\x70\x18\x99\x56\x0d\x36\x1e\xe9\x93\x2a\x7b\xc1\x93\xc4\x58\x65\x30\xd2\x85\x2c\xdf\x01\xc2\xd7\x8f\x24\xb2\xe9\xc4\x10\xd6\xb9\xe9\x48\x04\xc5\x1e\x38\xd4\x8c\x60\xfd\x43\x9b\x22\x58\x44\xec\x8b\x47\x9f\xc4\x1e\x38\x74\x14\xc1\xfa\xbb\x36\x45\x44\x92\x7e\x14\x99\x4f\x4b\xed\x27\xcc\xa1\xc8\xa6\xfe\x21\xb9\xe5\x90\xdc\xf2\x10\x06\x88\xfe\x2e\xb9\xe5\x50\xd7\xa6\x08\xa2\x6e\x04\xdd\xc3\x9b\xfc\x00\x20\xd9\xaf\x8c\x6b\x08\x26\x28\xd4\x60\x2d\x32\x63\x32\x78\xb0\xf1\x96\x40\x66\xa4\x81\x07\x1b\xc7\x2e\x15\xa2\x9a\x24\x0b\x45\xd1\x88\xcc\xc8\x18\xab\xbe\x96\x82\xff\x8d\x33\xd7\xaa\xb3\xa5\xea\x9b\x25\xe5\x97\xaa\x97\x5c\x63\x4e\x4b\x69\xfa\x27\x4c\xbd\x46\x64\xc6\xaa\x6f\x14\x2d\xed\x07\xe0\xe1\x8c\x4a\x79\x9f\x00\xb1\x77\x79\x97\x00\xec\xc1\xce\x7d\x2d\x27\xfc\x88\x66\x23\x28\xee\xea\x5d\x6e\x6a\x99\x0c\x9e\x44\xee\xfa\x29\x28\x0e\xcb\x3b\x1c\x44\x57\xdb\x87\xaf\x0b\x98\x48\xd1\xa6\x68\x52\x92\x52\x12\x53\xd4\x29\xaa\x14\x65\x4a\xec\xf9\x3f\x86\x18\x62\x88\x21\x86\x18\x62\x88\x21\x86\x18\x62\x88\xe1\x7f\x10\xe0\x2b\x58\x2d\xe2\x6e\xee\xc6\x7e\x33\x84\x3a\x0a\x31\xea\x4d\xac\x26\x84\x55\x87\x31\xf8\x21\x46\xde\x55\xb9\xc4\xcd\xbd\x89\x35\x87\xb0\xa6\x30\xe6\x6e\xf4\xd1\x74\xcb\xf7\x2d\xee\xdf\x1d\x34\x7a\x3b\xc2\xbd\x8d\x91\x77\xb1\xe5\xe4\x12\x8e\x47\x69\x50\xb7\x24\x14\xe2\x22\xa8\x61\xcd\x9a\x35\x6b\xea\x96\xb8\x69\x86\x76\xbc\x85\x3a\x2e\xa1\x0e\x3d\xf6\xca\x33\xb5\x74\x0b\xf5\x42\x80\x6e\x6b\xf4\xa3\x08\x3c\x88\xf9\x10\x76\xd4\x7b\x12\xf5\x0e\xa1\x3d\xba\x4b\x34\x12\x58\x42\x45\xd0\x50\x60\x09\xc5\xa3\x8e\xf9\x98\x54\xdf\x7e\x12\x35\x2b\xc3\xb3\x6a\xe3\x58\x84\xcf\x80\x79\x98\x9f\xa0\xb5\x81\x25\x54\x0f\x5a\xab\x15\xeb\x01\xcc\xc3\x6a\xe3\x58\x94\x4f\x6a\xef\x47\xc9\xe4\xf6\x01\x94\xd4\xb1\x80\x0a\xa3\xf0\x38\xe6\xae\xe9\xc6\x9a\x7a\xd1\xaa\xea\x1e\x8c\x05\x34\x56\xb7\xe4\x62\x0f\xc6\xf5\x60\xfd\x7d\xa8\x90\xdc\x3e\x84\xea\x26\xfd\xe5\x24\xda\x7e\x12\x0d\xcf\xaa\x45\x0d\x6e\x36\xd9\x3b\x84\xb2\x80\x56\xd6\x2d\xe1\x7a\xb0\x50\xdd\x92\xf6\x7e\x94\x46\xea\x96\xb4\x0f\xa0\xa1\xba\x25\xa1\xf6\x93\xf2\x61\x08\xad\x5b\x42\x27\xb5\x9f\x42\xeb\x96\xc0\x0f\x31\x78\x06\x9b\xa8\x8b\x69\xda\x69\xb1\xf8\xff\x18\x62\x88\x21\x86\x18\x62\xf8\x07\x40\x34\xe8\x1b\xca\xf1\xb5\xa6\xc5\xd6\x4a\x13\x34\x2d\x2e\x58\x3b\x1b\xcc\x4a\x7e\x1a\xa9\x0e\x2f\xca\xc9\x05\x99\xc9\x1e\x24\x00\x00\x58\x39\x1b\xe4\x8d\x17\x2e\x1d\x2b\x8c\x1e\x3f\x95\x5b\x6d\x18\x27\x78\x28\x5a\x91\x2f\x7e\x88\x55\x9b\xc7\xab\xfe\x3d\x5a\xf5\x7f\x00\x32\xad\xdc\xda\x93\x96\xec\xbc\xae\x9c\x1c\xb3\xb5\x35\x6c\xc9\xcd\xc9\xcd\xcb\x32\x5b\xb9\xb5\xbc\x65\xbe\xa5\x2b\x67\xbe\xd9\xba\x96\x5f\x1b\xb6\x2c\xcc\x15\xe9\x1c\x91\xb5\x03\x85\x12\x65\x31\xbf\x16\x38\xb5\x25\xc8\xcd\x5a\x80\xc7\xb4\xeb\x90\x9b\xb5\x02\x9b\xb5\x77\x23\x62\xcb\x1d\x5a\x17\xb2\x23\xdb\x6c\x6d\x2b\x5e\x6c\x82\x5f\x83\xc9\x1a\x00\x01\xed\x0f\x91\x7a\xeb\x8e\xec\x6c\x6b\x9b\xa9\xc0\xb6\x2a\x7f\xbd\xc3\x05\xef\x82\xa6\xc5\xd6\x00\x78\x5d\x5b\x8e\x70\x45\xce\x93\x03\x4e\x67\x57\x00\xf4\x6b\x9f\x44\xb8\xa2\x82\x93\x03\xce\x82\xae\x00\xf8\x50\xfb\x2f\xc8\xf3\x56\x6e\x24\xa3\x60\xed\xec\x2c\x4b\x26\x6f\x2a\x30\x75\xb5\x01\x63\xf2\xff\x42\xda\x4c\xd1\xc8\x6f\xc9\x4c\x8b\x4d\x72\x98\x75\x7e\xb1\x65\x91\xd5\x3b\x61\xdc\x6d\xd6\x4a\x53\x41\xc9\x75\x31\xe7\x45\xf9\x6b\x6d\xe3\x91\xed\x2b\x4b\xd6\x6d\x58\x66\x5a\x6c\x9f\x6d\xe5\x3e\xcc\xb0\xcf\xce\xe4\xcd\x5d\x39\x66\x33\xf8\x81\x66\x2e\xc2\x8d\x64\xd8\xe5\x4e\x37\x98\xba\x2c\xb9\x66\xf0\x33\x4d\xd6\x78\xe1\xc9\x01\x53\xb1\xa9\x2b\x7b\x91\x19\x78\x34\x16\xe4\x97\xd6\xe7\xad\xd5\xb9\x0b\xb3\xad\xe4\x42\x73\xd6\x42\xb3\x75\x0b\x68\xd7\xe4\x22\x6d\xd6\x1d\x16\x6b\x9b\x5d\x14\x0e\x3a\x1d\x25\x2e\xab\x38\x5e\x07\x6f\xb1\x16\xf2\x0b\xad\xfe\x9c\x05\x92\xbe\xac\x5e\xeb\x8e\x1c\xb3\xd5\x2f\x1a\x21\x00\x3e\xd5\x2c\x47\x26\xd6\xcc\xb7\xb6\x8d\x29\x54\x8a\x20\x9f\xc0\x22\x7b\xac\x8d\x55\xbb\x06\x59\xcb\x7f\x90\x21\x8e\x39\x6f\xfe\xa8\x38\x35\x79\x53\xc1\xfa\x75\x0e\xfb\x4a\xf9\x25\xdc\x9c\x5c\xb3\xb5\x05\xae\xb6\xb9\x60\xc1\xfa\x75\x92\x9e\x40\x61\x12\x40\x7c\x79\xd6\x1d\xd9\xf3\xad\xf5\xd6\x36\xd3\xbd\xa5\x76\x29\x8e\x5a\xec\x53\xee\xd0\x04\x1e\x4e\x8a\x43\xaa\x17\x5a\xc4\xa6\xd1\x77\x49\xf2\x61\xe1\xfa\xe2\xb5\xe0\x5f\x92\x54\x63\x6d\xc7\x85\x33\x81\x6d\x49\x5a\x84\xfb\x20\x63\xa1\x25\x27\xf3\xe4\x40\x76\x97\x65\x91\x19\xbc\x94\x44\x20\xd1\x77\x74\xf9\xec\x05\x0b\xba\x0e\x81\x48\xd2\x14\xc4\x67\xc9\x93\xfa\xbc\x4d\xc2\x8d\xef\x45\x40\xb9\x38\x21\xc1\x64\x3d\x28\x6a\xf7\x4a\x92\xe1\xd6\x2d\xa4\x37\x36\xc6\x1b\x00\x9b\xc6\x84\xf8\x5a\xe4\x17\xaa\x67\x82\xac\xc4\xf7\x81\x6f\xc1\x0d\x62\x5a\xa3\x22\xf2\x16\xc9\x76\xab\x13\xcf\x03\x6e\x95\xab\x2b\x7b\xc1\x02\x6b\x8b\x14\x5e\xbe\xca\x5e\xea\x74\xc1\xd2\x02\xf0\x44\xa2\xf0\x9d\x34\xf9\x6f\x89\x5f\x00\xe6\x60\xf6\xc2\x05\x60\x67\xe2\x9f\xc0\x04\x9d\x8e\xbf\xcd\x21\x2a\xd6\xea\x05\x6f\x26\x5e\x01\x6d\xa6\x38\xb1\x18\xde\x77\xdf\x7d\x59\x4e\xd3\x62\xa7\x73\xb1\x29\xab\xc0\xb4\xd8\x59\xb0\xd8\x94\x75\x8f\x69\xb1\x28\xdb\xfc\x4c\xeb\x2a\x17\x6f\x01\x1f\x24\x7e\x09\x6e\xd4\x72\x54\xd5\x9f\x27\x7e\x05\x5a\xb3\x2d\xb9\x59\x66\x6b\x6b\x76\x76\x76\x96\x19\x5c\x4d\xbc\x0a\x0e\x66\x2f\xc8\x05\x73\x92\x24\x8a\x1c\x35\x03\xaa\x17\x9a\xe7\x5b\x5b\x17\x5a\x16\x66\x39\x9d\x3d\x96\x5c\xf1\x6b\x5e\x56\xd1\xd8\xd7\x45\x59\xce\x02\x6b\xeb\xc2\x6c\x73\x56\x51\x01\x28\x54\x37\x02\x9f\x65\xa1\xb5\x35\x67\x7e\x96\x25\xd7\x2a\xaf\x69\xeb\xd5\x2f\x83\xe7\xc7\x3a\xa8\x56\xbf\x02\xda\x4c\x77\xdc\x11\x5d\x5c\xe7\xca\xab\xeb\x5c\xb8\xd6\xb6\x41\x7e\xed\x61\xb5\xbd\x58\x3a\x97\xe0\x1d\x77\x8c\xad\xb9\xf6\xd9\xe0\x59\x75\x2b\x78\x1e\x1c\x53\xbf\x26\xab\x12\x96\x94\xda\x57\xdb\x8b\xf3\x1d\xd7\xa9\x52\x2c\x94\x75\x79\x4a\x7d\x62\xcc\x64\xa2\x06\x45\xf3\x46\x95\xf7\x89\x3a\x24\x0e\x68\xa1\x38\x19\x25\xab\x47\xe7\xa2\x32\x71\x10\x8c\x99\x34\xbb\x2b\x3b\xcf\x6c\x1d\x7b\x15\xc0\x64\x6d\xb3\xb6\x81\x59\xaa\x1f\xc8\x8a\x58\xe9\xe4\x45\xb2\xbc\xcc\x5e\x4b\x2e\x58\xa6\xda\x08\x5a\x17\x5a\x16\x64\x7d\x90\x61\xb1\x98\x33\x43\x16\x6b\xcb\x8a\xf5\xab\x9c\xae\xfc\x52\x17\xd8\xa0\xfa\xa9\x58\x97\x2b\xd5\x65\x67\x86\xe5\x3a\x5b\x71\x01\x78\x41\xf5\x0c\xb0\x5f\x3f\x8a\x62\x7e\xa5\xd3\x9a\xcf\x2f\xb4\xe4\x59\xfd\x39\x16\xb3\xb5\xc8\xc9\x17\x5b\x8b\xc5\x9e\xb2\xcd\x99\x56\x7f\x4e\xb6\xd9\x5a\x54\xc0\x17\x4b\x24\x0b\x41\xbf\xaa\x52\x62\x30\x61\x46\x15\xf3\x45\x4e\xb9\xa9\x53\x6e\x9a\x13\x2e\x2a\x90\x1b\x3a\x0b\xf8\x62\x70\x5a\x45\x83\x55\x2e\xde\x0c\xe2\xd4\x7b\x6f\x32\x9b\x6f\x32\x41\x6e\x4b\x48\x50\x02\xf0\x4b\x30\x47\xa9\x06\x2d\xb7\xdd\x02\x60\xa5\x72\x32\x68\xb9\x6d\x6c\x65\x11\x57\x4e\xc9\x78\x32\x07\xf0\xb0\x32\x6d\xac\xf6\xda\x9b\x22\x2b\x36\x44\x6b\x7f\xae\xcc\x90\x6a\x6f\xf6\xea\xc8\x6d\xc0\xab\xcc\xbe\xc6\x19\x46\xdf\x25\x19\x93\x0d\x1c\x53\x2e\xf9\x06\xa9\xde\x55\xae\x12\x4f\x91\x15\x8e\x92\xfc\x02\xa9\xe7\x79\x25\x2b\xd6\x98\x4d\xa2\xd1\xf3\x67\x67\xaf\x34\x03\x8d\x6a\x1d\x78\x7e\x6c\xb8\x72\xff\xf2\xdb\x35\x51\x8d\xda\x4b\x8a\x27\x5e\x0b\x53\xb5\xa9\x9a\xd4\xa4\xd4\xc4\x54\x75\xaa\x2a\x55\x99\x1a\xf3\xff\xc7\x10\x43\x0c\x31\xc4\x10\x43\x0c\x31\xc4\x10\x43\x0c\x31\xfc\x0f\xc2\x4b\xe4\xf3\x6c\x05\xf9\x22\xbb\x89\xdc\xc1\x22\xe4\x76\xd8\x82\xf9\x90\xc3\x15\xdb\x5f\x3c\xfc\xf8\xf6\x1d\x87\x9f\xd8\xfe\x5c\x8f\xf0\x29\x6c\xc1\x98\xe7\xc8\x3d\xfb\xb7\x8f\x78\x7c\x74\x7c\xeb\x65\x14\x36\x61\x55\xfc\xa5\x50\xe0\xa8\xa0\x0e\x9b\x84\x78\xd8\x84\x85\xf8\x3f\xb2\xf7\x93\xb9\x2c\x46\x2e\x84\x1f\x61\x8f\xb5\x62\x4c\x3c\x99\xcb\x24\x48\xbf\x20\x8b\xe5\x31\x15\xe7\x2e\x93\x5e\xe6\xd1\x73\x7f\x26\xeb\x7d\x57\xe0\x0b\xd8\x08\x7c\x41\xec\xe8\x2f\xdb\x9f\xd8\xbe\xf4\xf0\x9e\xed\x4b\x0e\x57\x6c\x5f\xd1\x23\xfc\x81\x06\x30\xeb\x2f\x8f\x1d\xc1\x0c\x87\x41\x99\x77\xfb\xa6\x91\xc3\xa0\xac\x7e\xfb\x26\xf7\x63\x87\xb1\xc7\x8e\x61\x8f\xb5\x63\x8f\xbd\x8e\x95\x9d\x1e\x7c\xeb\xcb\x77\x1e\xf8\x75\xe5\xef\x5e\x18\x2a\xd3\x0e\x27\x7f\x85\x3f\x44\xfc\xbf\xa9\x2f\x24\xfe\x8d\xe3\x57\xa2\x41\x84\x7b\x1b\xa3\x70\xd4\x87\xb4\x3b\x47\xb7\xc7\xf7\xe8\x2e\x4b\x5b\xf6\x0b\x89\xbe\xc4\xf6\x4e\xcc\x7b\x18\xeb\xd1\x5d\x82\x2f\x63\x6c\x02\xf9\x2b\xa6\x62\xff\xa3\xa4\xd7\x53\xff\xbb\xc7\xf8\xb8\xe0\x4f\x04\x05\xf4\xa2\xc2\x67\xe4\x6e\x0f\xcd\x62\xe4\xaf\x98\xdd\xfb\xe9\xdf\xfd\x94\x4f\x08\x3e\xce\x63\x8e\x51\x54\xa4\xa3\x41\xc0\xdb\x18\x0a\x78\x95\xa1\x80\xb7\x6c\x37\xb9\x5b\x3c\xd0\x24\x9d\xa1\x1b\xda\x66\xe6\x43\x01\x2f\x0d\xd4\x15\x8a\x32\x2f\xe9\xad\x45\xcf\xd7\xef\xaf\xff\x1d\xcd\xc7\x05\x77\x0b\x6d\xf0\x00\x2a\x7c\x16\xf0\x9a\x57\x85\x02\x5e\x5d\x7e\x28\xe0\x15\x96\x84\x64\x46\xe4\x4b\x9e\x17\x83\x7e\x01\xf5\xdf\x5e\x55\x15\xf0\x16\xe6\x31\x4f\x90\xcf\x7d\xea\x0d\xd5\x79\xc9\x27\x42\xcc\xcf\xc8\xed\x17\x40\x9d\x97\xfc\x59\xb9\xa1\xec\x45\x72\x07\xf3\x52\x05\x20\x9f\x17\x8d\xf7\x2b\xc3\x58\x1f\x8c\x77\x7f\x3d\x0d\xdc\x5d\x9d\x03\x7d\x95\x14\x0b\xc8\xe7\xc8\x89\xba\x98\xae\x9d\x1e\xf3\xff\xc7\x10\xc3\x3f\x10\x14\xc5\x25\xe3\xc9\x5f\xed\xc5\xf2\xb6\xb2\x1b\xa8\xe2\x12\xe8\xb0\x17\xdb\x9c\x62\x51\x69\x7e\xf1\x6a\x1b\x65\x2f\x5e\x59\x6a\x2b\xb2\x15\xbb\xe4\x6d\x81\xf3\x4b\x57\xdb\xa8\xf1\xff\x98\x95\x88\x61\xf1\xfa\xa2\x15\xb6\x52\x27\x35\x71\x87\xda\x0d\xd4\x18\xf3\x92\x62\x58\x58\xe2\x28\xc8\x82\xeb\x9d\x36\x68\x4a\x2f\x32\xc9\x1e\x89\x95\x25\xf7\xd8\x4a\x29\xb1\x46\x4e\xd8\x63\x2f\x16\x09\x28\x87\xbd\xc8\xee\xb2\x15\x44\x99\x64\xc1\xa2\xfc\x0d\xb0\xc0\xe6\x74\x95\x96\x6c\x18\x17\x57\xfe\xff\x56\x69\x0b\x62\x1b\xcc\xd8\x70\x67\x71\xe6\xb2\x04\x4a\xda\x5b\xf7\x3e\x6a\x29\xcc\xcd\x59\xb4\x68\x11\x25\x09\x16\xdd\xc8\x78\xf5\x84\x41\xdc\x05\xcd\x54\x38\x2c\x24\x84\x0f\x90\x07\x98\x86\x0a\x40\x36\xf8\xe3\x61\x8b\xa7\x36\xec\x2e\x2f\xa7\x4f\x3b\xe8\x4a\x1a\x04\x98\x50\x63\x80\xf1\x30\xe4\xfe\x00\xe3\x3e\x7f\x80\x47\xcf\x37\x30\x07\x82\x4f\x31\x0d\xe7\x36\xd7\x26\x94\x97\xd3\xa5\x0e\xba\xd2\x5d\x79\x90\xd9\x4b\x1e\x60\xf6\x91\x0d\x34\x08\x1c\xb0\x79\xf9\x84\x50\xe0\x80\xad\x5e\x98\x62\x60\x0e\x54\xc4\x91\x07\x6a\xd1\xf3\x0d\x34\x12\x38\x10\x1e\xe5\x7f\x23\xa8\x43\x81\x03\xa4\x57\xfc\xa8\xdf\x77\xd0\xcd\x54\x90\x7b\x99\x47\xc9\x7d\xfb\x0e\x1a\x02\x7b\xe5\x96\x7b\x6d\xf5\x02\xce\xec\xad\x88\x23\xf7\xd6\xa2\xe7\xf7\xd1\x48\x60\xaf\xd8\xd0\xdd\x0a\xb6\x16\x86\xe4\x8c\x2d\xba\xcf\xdc\x17\x8f\x79\x78\xec\xe2\x71\x0f\x07\xd0\xb0\xd5\x1f\x9f\x77\xc1\x9c\x77\x81\x77\x03\x9b\xd3\xbe\x8a\x6c\x3a\xe8\x3f\xde\x25\xda\xd5\xc0\xec\x2d\xdb\x43\xee\x65\xf6\x95\xf9\xc8\x7d\xfe\xb8\xf0\x95\x5a\x05\x3d\xd7\x41\x57\x32\x5e\x1a\x3d\xc9\x84\x98\xfa\x4f\x19\xff\xab\xcc\x41\x9d\xbf\xf6\x03\x69\xa7\xf2\x97\xc9\x0a\x69\xa7\x72\x3f\xf9\x28\x8d\xb0\xa0\xee\x91\x2a\xdd\x97\xb4\x1b\xee\xf3\x38\x3c\x95\xdc\x90\x47\x33\xec\x11\xbe\xc8\xdb\xf7\x14\xb3\xf9\x02\xd2\x55\x71\xee\x51\xbf\x42\x1a\x3f\xf3\xc8\xfe\x72\x72\x8f\xc7\x47\x23\x81\x3d\x42\x42\x63\x55\x60\x8f\x23\x9f\x64\xf6\x90\x2b\x18\x1f\xb9\x92\x3b\xe5\x21\x97\x72\xa7\x3d\xe4\x32\xe6\x29\x72\x09\xb3\x99\xbc\x4b\xba\xbc\x8b\xc5\x4f\x89\xc5\x9b\xf3\xb8\x21\xcf\x05\x94\xdc\xc3\x0d\x7b\x2e\x00\xd2\x67\x60\x5e\x2e\xdb\x23\x09\xe2\x2f\xf3\x89\x82\xb0\x80\x1a\xf2\x50\xc3\x1e\xe6\x11\x72\x0f\x53\x4e\xfa\x0c\x52\x37\xd3\xe9\xb8\x50\x60\x8f\xb4\x3f\xf9\x9e\x46\x1a\xd4\xed\x61\x7c\x15\x20\x54\xb7\xc7\xb3\x87\xf4\xd5\xbe\xe7\x28\xfb\x85\x0f\x78\x0e\x78\x1a\x1a\xe3\x0f\xa4\x37\xf8\x2d\x4c\x03\x79\x90\x39\xa0\x4e\x3f\xe8\x4f\x17\x3f\x66\x96\x89\x06\x3f\x58\xd6\x40\x36\xf8\xa7\x6c\xcb\x4c\x2e\xdb\x5d\xe7\x65\x18\xf2\x00\xb3\x9f\x6c\x80\x7a\x8f\x68\xc4\xba\xdd\xa1\x46\xfe\x72\x87\xa2\xf6\x73\x86\x51\xec\x17\xa6\x1a\x76\xd2\xa0\x6c\x77\xdd\xee\xc6\x10\x0b\xca\xe8\xba\xdd\x9e\xdd\x24\xcd\xf7\xd2\x48\xe0\x11\x01\x73\x3c\xfb\x0b\xe6\x11\x92\x61\xca\xc9\xfd\x79\x8c\xf7\x02\x42\x1d\xf3\x30\xf5\x17\x00\x75\xdc\x43\x03\xd8\xe2\xa9\x63\x42\x8d\xfc\xa5\x0e\x45\xed\x67\x95\x07\x69\x04\xce\xf2\x08\x7a\x03\x0d\x98\x83\x65\x4c\x1d\x23\xb1\xdb\x5f\x27\x4d\x30\xfe\x24\xfb\x07\xb2\xd3\xa7\x65\xc1\x76\xaf\x17\xa0\x3d\xba\xcb\xe4\x51\x1f\xea\x69\x75\x3c\x16\x72\xc3\x3b\x46\x61\xe1\x9f\xaf\x33\x84\x82\x26\x45\xdd\x3f\x15\x7c\x99\xd9\x7c\xce\x7f\x21\x6e\xcc\x18\x2f\x9f\x7b\x84\x1a\xf2\x30\xfe\x73\xe5\xa2\xd2\x9e\xa2\x4e\x79\x98\xcd\xd4\x69\x0f\x0d\x98\xa7\x78\xb4\x7b\x73\xf7\x53\xcc\xcb\x3c\xda\xed\xef\x7e\x39\xf0\x72\xdd\x53\xcc\x23\xc1\x97\x99\xf2\x73\x2c\xc9\x32\x8d\x65\x8d\x64\x23\x73\xb0\xec\x20\x79\xf0\xed\x1e\xdd\xb9\x11\x8f\xd7\x87\xb2\x08\x59\x7f\x98\x5d\xb3\x66\xcd\x9a\xcc\xe4\xa0\x57\x48\xe8\xf6\xaa\xcc\x75\x4c\xe8\x30\xdb\x5d\x2f\x7c\xd2\xa3\x3b\xcb\x78\x79\x05\x2b\x96\xc0\x36\x8f\x74\x22\x65\x09\x98\xa3\xfb\x99\x3a\x26\xe4\x78\xe7\x19\x03\xc3\x44\x37\xbf\xdf\x2f\x6f\x7e\xcf\x02\x3a\xa1\x8e\xa9\xd2\x7d\x99\xc7\x3c\x75\x21\x9e\xf4\x36\x30\x9b\x2f\x00\xb2\x5e\x9c\x49\x17\x90\xa8\xf8\xb4\x82\x05\x75\xde\x2a\xdd\x97\xcc\x23\xe4\x6e\x49\xa7\x34\xb9\x9f\x06\x95\x7b\x2a\x7d\x21\x38\xcb\xc3\x63\x0e\x4f\x25\x8d\x32\x7b\xc4\xd9\xeb\xfb\x94\xf1\x4f\x0a\x30\xa4\xaf\x2a\xc0\x90\x7b\x18\x86\xdc\xcd\xec\x27\x69\xa8\xf7\xf0\xef\xd1\x20\x2f\xb0\x9b\x64\xce\xed\x26\xf7\x86\x02\xbb\xc9\xfd\xe7\x68\x72\x1f\xe3\x25\x0f\x9c\xdb\x4b\x7a\x99\x7a\xb2\xe1\xdc\x3e\xb2\x7e\xdf\xde\xaa\xc0\xee\x3a\x6f\x15\xff\xe7\x80\x97\xc7\x42\xc2\x27\x13\x07\x51\xfd\x74\x48\x78\xd7\x41\x3f\xed\x1b\x35\x1c\xde\xbc\xbd\xfe\x8b\xfd\xdb\x7d\x23\xc2\x17\x51\x21\x2f\xa0\xfe\x64\x7a\x07\xdc\xe7\x81\x49\x57\xc3\x67\x04\x51\xa6\xb1\xde\x69\xd0\x5d\xdf\x4d\x4b\x8c\x77\x1a\xca\x76\xdb\x1e\xe1\x95\x0c\x5d\x01\x6c\xe5\x82\x62\x27\x3f\x22\x7c\x90\xc7\x54\x48\x67\xe4\xa3\xe2\x19\x29\xce\x9a\xb2\x3d\xe2\x74\x29\x27\xf7\x97\xf9\xa8\xe3\x9e\xda\xc9\xd2\x44\x63\xc4\x39\x23\xaa\x4d\x9e\x19\xb0\xc5\x03\x5b\x3c\x0d\x3c\xe6\x70\xfd\x02\xb6\x78\x48\xaf\xf8\x51\x0f\x97\x7a\x68\x94\xf1\xd6\x89\xe7\xb1\x68\x02\x79\xa6\x09\xaf\xe9\xbe\xf0\xc5\xbf\xd7\xef\x11\x14\x3d\xba\xcb\xe6\x0b\xb0\xc5\xe3\xff\x3d\x1c\x24\x99\x03\xa4\x97\x69\x90\x5a\xf9\x80\x87\xf5\x34\x7a\x0e\xfa\x92\xe3\xbd\xe9\xf5\x97\x19\xb6\xec\xfa\xd5\x40\x41\x4f\x71\xd0\x95\x3e\xc0\x8e\x3e\x7d\x00\xa6\x7b\xa2\x87\xb1\x29\x4e\xa3\x95\x07\x03\x8c\xb8\x82\x31\x64\x3d\xfc\x37\x8f\x5f\x4b\x83\xca\x83\xf0\xdf\x3c\xb5\x0a\x7a\xb1\x83\xae\x14\xf5\xff\x6b\xe6\x00\xc9\x30\x0d\xe4\x7e\xe6\x11\x69\x74\xd4\x71\xcf\xd8\x42\xc7\x27\x75\xfc\xa1\x56\x41\xff\x46\xa4\x1c\x1f\x96\xf1\x19\xf9\x3b\x1d\x07\x5b\x3c\x21\xe1\xfd\x46\xe1\x9d\xbf\x61\x14\xdf\x71\x16\x2b\xbb\xbd\x21\x1e\x73\xfc\xec\x69\x69\x1a\x7f\xdc\xa3\xfb\x2d\x03\xf6\x1d\xad\x3e\xe6\xd9\xd7\x5a\x7d\xdc\x23\x4e\x82\x22\x1e\x73\xcc\x22\xc5\x93\x9b\x8f\xab\x72\xd0\x95\xec\xa8\x4f\x4d\x03\xd2\x4b\xd6\x57\xee\xae\xa4\x3d\x7b\x2a\x7d\x9e\xbd\x95\xfb\x60\x9b\xa7\x36\x53\xb8\x37\x5c\xc8\x63\x8e\xa6\xca\xf0\x4a\x5e\xe3\xd8\x4b\x8a\xcd\xb3\x78\x1c\xb6\x78\x7c\xd8\x7b\x61\x8f\xa0\xe9\xd1\x5d\x1e\x09\x6f\x11\x14\xf4\x80\x83\xae\xdc\xa6\x6e\x80\x2d\x1e\x21\xbe\x56\x1d\xce\xe2\xbf\xf0\x01\x4f\x83\xa0\x80\x83\xe4\xfe\x03\x3b\xbc\xfb\x1b\x76\xd4\x9f\x15\xd7\x67\xf1\xba\xd3\xc8\x1f\x61\xf6\x28\x7c\xbc\x82\xfe\x58\xb4\x04\x76\xf8\x91\xed\x4c\x8f\xee\xcf\x9e\x83\x34\x1a\x60\x42\xc1\xdd\x01\x26\x74\x8e\xf6\xaf\x16\x55\xfd\x49\xd4\x58\x72\xdd\xd3\x07\x42\x30\xdd\xd3\x81\x09\x9f\x33\x7b\x65\xab\xed\x93\x0e\x50\xef\x11\xe6\xdd\xfa\x6a\x10\x32\x30\xff\x56\x31\x83\x5c\x42\x2e\x65\xfe\xbd\x02\x21\xef\x32\x54\x28\xc9\x65\xf4\x0b\x81\x25\x27\x9f\xe2\x35\x79\x3b\x2f\x24\x34\xf8\x3f\x63\x36\x57\x28\xc9\xcd\x79\xcc\x53\xe4\x0a\xea\x4f\x18\xb9\x9c\xd9\x4c\xae\xbc\xa0\x24\x37\x53\x97\x30\x32\x9f\x59\xc1\xa3\xdd\x2b\xbb\x57\x30\x4b\x79\xb4\x7b\x59\xf7\x52\x66\x49\x70\x29\x73\xd7\xb9\x65\x34\xf0\x27\x04\x96\xd6\xad\x38\xba\xee\x3d\xf1\xc0\x3a\xa8\x2f\x30\x1a\x04\x96\xc3\x9a\xcb\xfb\xee\xec\x40\x79\x5d\x60\xb9\xa1\x42\xa7\x53\x19\x2a\x7e\x66\x78\xfc\x12\x56\xb7\x7c\x67\x5e\xd9\x72\x72\x39\x93\x5f\x01\xc8\xfc\xbc\x0b\xca\x4f\x2e\x61\xfc\x00\x83\x86\x93\xfd\x5a\x16\xa3\x1e\x52\xb2\x9f\x53\x3f\x54\xe6\x39\xd6\x6a\x1d\x6b\x4f\x7f\xf4\xf7\xc3\xb3\x71\xaf\xe5\xcf\x06\x93\xd5\x2f\xc5\x71\xe7\x33\xf2\x67\x67\xf2\x39\x5d\x5b\x40\x86\x7a\x7f\xf4\xe7\xc9\x01\x4b\x4e\x97\xc5\xb2\xc0\x0c\x5c\x6a\x7f\xdc\xf3\xd6\xb6\x8e\xf9\x99\xa6\x52\x9b\x7c\xab\x03\xed\x4e\x29\x79\x65\xbe\xc3\x61\x2b\x90\x12\x68\x4a\x89\x09\x4d\xc0\xa3\x6e\x8b\xf3\xe5\x59\xdb\x4c\xd1\xdc\x84\xe2\x2d\xcf\xdc\x55\xeb\xe6\x66\xc1\xb9\xd2\x1e\xf8\x73\xb3\x60\x49\x29\x9c\x5b\x94\x7f\x9f\x78\xcf\xe3\x9c\x6b\x02\x2d\xea\xae\xb8\x36\xc9\x53\x2b\x87\xde\x38\x1c\xb0\x30\xff\x9e\x68\xd4\xc6\x1d\xa5\xeb\x8b\xe1\x58\xa7\x26\x10\x52\x47\xe2\xda\x7e\x9f\x31\x3f\xd3\x34\xc6\x00\xe6\x98\xc0\x07\x6a\xdd\xdc\x16\x58\x50\x22\x67\xfd\x2b\x14\x6f\xda\xa0\xc5\x6c\xb6\x98\xc1\x57\xea\x94\xb9\xd5\x1f\x64\x58\xb2\x2d\x99\x21\xf1\x90\x9d\xd9\x93\xbd\x20\x37\x94\x63\x01\x00\xe4\x3e\x93\x6f\x6d\x73\xce\xb6\x06\x40\x9a\x6a\x45\xdc\x0e\x8b\xf8\x63\xb1\x75\xc7\x7c\x73\xb4\xd4\xa6\x72\x88\x72\x49\xd1\x05\xd1\x41\x43\x98\x31\x16\x91\x74\x4f\xbe\x63\xbd\xcd\x99\x69\x02\xff\xa2\xba\x47\x12\x3f\x1d\xde\x2f\x47\x84\x58\xcc\x0f\xc2\xfb\xb3\xec\xc5\x2b\xa3\xdf\x9c\x50\x3a\xd8\xe4\xdb\xb2\x07\x4d\xc0\xa3\x72\x4b\x2d\x8a\x6c\xa5\xab\x6d\x26\xd0\xa0\x7a\x54\x66\x50\x08\x21\x5c\xb7\xde\x05\x6f\xb8\x6d\x34\x81\x7e\xd5\xe6\xb8\x36\x53\xba\x78\xdb\x27\xb5\x11\x55\xf3\x35\xa2\xb7\x54\xff\x3b\xce\x97\x9d\x63\x6d\x03\x57\x55\x55\x71\x6d\xa6\x1b\xc2\x2f\x5c\x25\xe3\x37\x8c\xf3\xe6\xcd\x33\x2d\x06\x0a\xf5\x68\xe2\x1d\xca\xaf\xb0\x96\xbb\x26\x62\xe9\xd8\x58\x97\xdc\x75\x3d\xc0\x12\x65\x7c\xdc\x2f\xad\xcf\x5b\xeb\xad\x6c\xf6\x82\x05\xe0\x1e\xa5\x2e\xce\x39\x9b\x37\xa5\x4b\xa9\xfb\xf3\xcc\x56\x5f\xb6\xf8\x65\x91\x19\xd4\x2a\x53\xe2\x7c\x39\xe2\x80\x4c\x8b\xad\x3b\x2c\xd9\xd6\x36\x93\xe4\x7f\x77\x96\xac\x72\x5d\x33\x65\x54\xd3\x62\x7b\xdf\xfc\x68\x4b\x5e\x39\x3b\xce\xb7\x60\xac\xe5\x7c\x6b\x9b\xe9\xdb\xb2\x4f\x2e\xcc\x9b\xc0\x08\x5c\x54\xce\x8b\xf3\xe5\xca\xcc\xac\xbe\x85\x51\xc1\xbc\xd6\x83\x16\x8b\xd9\x0c\x94\xaa\xbc\xb8\xa7\xf3\x79\x4b\x67\xce\x22\xd9\xd4\x13\x9f\x05\xd2\xb4\x69\x9a\xb4\xa4\xb4\xc4\x34\x75\x9a\x2a\x4d\x99\x96\x90\x16\x9f\xa6\x48\x8b\x4b\xc3\xd2\xd0\xef\xed\xf1\x24\x86\x18\x62\x88\x21\x86\x18\x62\x88\x21\x86\x18\x62\x88\x21\x86\xbf\x13\x6e\xb2\xd7\x9f\xed\xba\xbd\xfe\x56\xd9\x0b\xbe\x7d\x87\xbf\xbb\x27\xec\xf0\xf7\xf3\xbf\x6a\x87\xbf\x3d\xdf\xba\xc3\x1f\x77\xdd\x0e\x7f\x00\xb4\xfd\x5d\xc7\xdf\xfc\xdf\xb2\xff\xdf\xb6\x5b\xec\xff\x27\x2a\x77\x7c\xd7\xbf\x97\x26\xee\xfa\x27\xd6\x80\x43\x37\xdf\xeb\x2f\x72\xeb\xbd\xfe\x7e\x7f\xab\xbd\xfe\x70\xd5\x3b\x09\x37\xdb\xeb\x71\xa2\x2e\x66\x68\x67\xfc\xe3\xf9\xff\xbb\x06\x22\x41\x0a\x44\x06\xe8\xee\x70\x5f\x70\x88\x1e\x0a\xf6\x05\x4f\x0c\x07\xbb\xb6\x52\x40\x4a\xf4\xd8\x7d\xaa\xaf\x2f\xfa\x55\xce\xb6\xca\x0f\x0e\x0c\x4b\x14\x14\x10\x5b\xd0\x7d\x03\x27\x7a\xc5\x1f\xe1\x97\x07\x68\x29\x4b\x2a\x05\xc2\x91\xd3\x9d\x7d\xe1\x2e\x89\x63\xa4\xb3\x3f\x08\xb6\x6e\x0d\x47\x86\x4e\x75\x77\x87\x4f\x84\x83\x91\x61\xba\x3f\xd8\x3f\x30\x28\xa5\xfb\x1c\x3c\x35\x9e\x65\x93\x02\xb7\x4e\xf2\x78\x1d\xa8\xb1\x5c\x91\x72\x3e\xc9\xf7\x7e\x2d\xf5\x43\x77\x05\x4f\x07\xfb\x06\xf8\xe0\xe0\x58\xe2\x48\xaa\xf1\xeb\x59\x86\xbf\x8e\xe0\x5b\x72\x73\x51\x4e\xba\x7b\x60\x90\x1e\x0e\x05\xe5\xec\x96\x03\x83\xd4\x71\x39\x3b\xe9\x6b\x72\xca\x58\xbe\xaf\xf3\x44\x90\x0e\xbe\x1d\x1e\x1a\x0e\x47\xde\x94\x9b\x89\x44\x27\x86\x07\xfb\xb8\x13\xaf\x4d\x24\x3e\xd1\x19\x39\x11\xec\x93\xf8\x50\x6d\x00\x48\x7a\x69\x96\xd2\x63\x76\x05\xdb\x01\xf5\xd6\xc0\xa9\xbe\x2e\x29\xa7\x70\x5f\xb8\x37\x78\xf3\x9c\xc2\x34\xa0\xa2\x39\x8b\x87\x06\x4e\x0d\x9e\x08\x5e\x4b\x59\x2c\x67\x4e\xed\xa4\x7b\x83\x67\xc6\x69\xba\x82\xa2\x50\x72\xda\xd2\x9b\x11\xd2\x60\x2c\x89\x71\x67\x64\x58\x54\x79\x3f\x2f\x0e\xe2\x75\x7a\xca\x6b\x53\x46\xa6\x80\xa9\xf1\x53\x53\xa6\xce\x99\xba\x78\x6a\xe1\x54\xe7\xd4\x8d\x53\xb7\x4d\xbd\x5d\xdf\xa3\xff\x7c\xf2\x39\xbd\xa0\x1f\xd5\x27\x1b\xb2\x0d\x36\x43\x89\xc1\x65\xf8\x89\xe1\x5f\x0d\x9e\xf1\x7f\xb4\x21\x6c\x78\xdb\xc0\x1a\x9e\x35\x1c\x36\x9c\x37\x7c\x6e\x88\xca\x39\xd4\x37\x30\xfc\x3a\x98\x90\x56\xfa\x75\x30\x51\xba\x89\xd5\x13\x69\xc6\x26\xcb\xeb\x60\x6c\x48\xe1\xa1\xde\x86\x21\xb6\x99\x8e\x8e\xe3\x78\x70\xe8\x44\xd4\x12\xa2\x9e\x29\x49\x6b\xe1\x08\xdd\x1f\x8c\x9c\xa2\x07\x06\xe9\xce\xc8\x19\x5a\xd6\xdf\xc4\x5c\xb2\x14\xa0\x3a\xfb\x06\x83\x9d\x5d\x67\x64\xcb\x0d\x35\xd3\x14\x18\x3e\xc3\x07\xe9\x70\x84\xee\xa4\x23\xef\x5c\x75\x0c\x61\x3e\x02\xf6\xab\x9b\x53\x89\x17\x7c\xa0\x86\x23\xe0\xf4\x44\x87\x56\x39\x2e\x5f\x27\x4d\x1f\x93\x8d\x2d\xc3\x4f\xd3\xa3\xd1\xbf\x23\x91\x37\xe8\x13\x34\x4d\x9f\x12\x0b\xe9\xf1\x21\xb4\xd1\x83\xf4\xd0\x31\x7a\x0b\x1d\xfd\x1b\xa5\x4f\x3d\x4f\x07\x47\xa5\xef\x67\x45\xc2\x61\x9a\x0e\x06\x07\xe9\x81\xee\x13\xfd\xc3\x9d\x91\xe1\x53\x47\x4f\x74\x8b\x9c\x8f\x89\x1f\xdd\x74\xb3\xc8\xf0\x55\x9a\x6e\xa5\x69\xba\xe5\x15\xfa\xcd\xa1\x71\x39\xe8\xca\x96\x40\xcb\xa1\x57\x0e\xbf\x7a\xe4\x68\x2b\x38\xd2\x0a\x5e\x6d\x39\x7c\xe8\x95\xa3\x20\x00\x5a\x8e\x1c\x6a\x05\x65\x5a\x56\xf3\x96\x66\x87\xe6\x17\x9a\x72\x4d\x8b\xa6\x5d\xd3\xab\x29\x35\x96\x4e\x2b\x4d\x2d\x4d\x29\x9d\x7e\x97\x71\xcd\xe4\x7b\x27\x6f\x9c\xfc\xcf\x93\xab\x26\x3f\x3b\x39\x9d\x78\x7f\xf2\xc6\x29\x4f\x4d\x59\x4b\xbc\x60\xac\xb9\xd3\x58\xfd\x2c\xc1\xbf\xc4\xaa\xa8\x69\x84\x63\x1f\x5e\xb8\xad\x70\x67\x21\x0b\xa8\xe5\xc6\xf6\x99\x04\xb5\xd4\xd8\x3e\x9d\xa0\x96\x19\x39\x03\x41\xe5\x1b\x39\x23\x41\xad\x30\x76\x20\x02\x4a\xa3\xd5\x76\x63\xd3\x79\x82\xfb\x3d\x01\xcf\x60\xb5\x5a\x76\x94\x4a\x21\xb8\x35\x46\x99\x07\xb7\xd4\x48\x39\x8c\xdc\x32\x23\x55\x64\x2c\x6f\x28\x6f\x2c\x77\x17\xee\x2c\xdc\x56\x08\x17\xeb\x58\x40\xfd\xc5\x40\x4f\x69\xbd\x62\xa8\x03\x55\xba\xcb\xf0\x34\xa6\xa4\xa7\x04\xc0\xae\x2b\x86\x2a\xdd\xe5\x8c\x5a\x0d\x17\x67\x0c\xc7\x0b\xf1\x32\x1b\x78\x87\xae\xbc\xb1\xbc\xa1\xdc\x0d\x6b\xae\x42\xeb\x28\xb4\x8e\x72\xd3\x88\xb0\x8a\x4f\xf3\xe9\x60\xbf\x3a\x6b\x0e\xa1\x53\xb2\x4a\xea\x8a\x01\xfe\x18\x67\x15\xf2\xd1\x97\xc2\xcf\x0f\xc7\xf1\x71\xbe\x49\x7c\x56\x58\x27\x1d\x67\x87\xd5\x7c\x9c\x0f\xe7\x53\xc3\x4a\x61\x6a\x78\x8b\x80\x87\x97\x0b\x5a\x9f\x12\xf6\xab\xb9\x69\x04\x04\x50\x87\x73\xce\x69\xd4\x2e\x82\x73\x4d\xa3\x5e\x24\x68\xc0\x82\x0e\x85\x90\xd0\x11\x2f\x60\xbb\x4a\xa7\x85\xf8\x3f\x52\x5e\xc2\xc0\xfe\xfb\xe3\xf7\x4e\xa3\xee\x9d\x56\x8b\x5d\xbc\x6f\x9a\xbb\xc9\x4b\x74\x7c\xce\xab\x20\xaf\xe3\x52\x08\x01\x71\x73\xbf\x23\x28\x9b\x91\x3b\x47\x50\xab\x8c\x17\xbd\xc4\x45\x2f\xd1\xfa\xc3\x54\xe3\x43\xa9\xc2\x0c\xb8\x7b\x12\x67\x36\x52\x06\x62\xd7\x0f\xa7\x71\x77\x1a\x29\x23\xb1\xeb\xa1\x69\x34\xf0\x89\xbd\x5e\x5c\x65\x6c\xf2\x12\x7d\xf5\x04\xdf\xeb\xe6\xde\x95\x38\xbc\x27\x72\x60\x27\x51\x06\x82\x05\x94\x91\x80\x3a\x5c\x56\x1c\x67\x36\x46\xee\x34\x9a\x6f\x37\xf8\xb0\xa5\x16\x63\x8f\xee\x4a\xad\xd0\xf4\x2c\xd1\xbc\xd5\xc8\x8e\x1a\x1e\xf5\xa3\xa1\x47\x7b\x3e\xbe\xd3\xc8\x7f\xb1\x68\x9b\x71\xd7\x36\xa3\xac\xb2\xe6\xff\x24\x46\x3e\xf6\x18\xfd\x19\xdb\xd4\xea\x86\xd6\x6d\x46\xca\x62\x6c\xfd\x0f\x23\x95\x6d\xe4\x15\x1a\x8b\x51\xf8\xb0\xe6\x3f\x89\x1a\xb3\xb1\x79\xeb\x1c\x82\x42\x8c\x6e\x16\x95\xd5\xe7\x66\x01\xe5\x25\xd8\xcf\xa9\x7a\x42\xb4\xb8\x33\x55\xb4\xb8\x2b\x95\x05\x54\x0a\x41\x4d\x23\xdc\x74\x72\x00\xa5\x1c\xc6\x50\x00\xa5\x8a\x8c\x6e\x3a\x99\x73\x18\xeb\xd0\x10\x57\x64\xac\x43\xdd\xdc\x59\x69\x0c\xef\x8b\x63\xe0\x9c\xa9\xd4\x0b\x04\x65\x20\x38\x57\x2a\xf5\x12\x41\x19\x09\x8d\x81\xe0\x95\xd2\x2c\xa1\x81\x9b\x46\x7c\x08\xd4\xe1\x2c\xa0\xea\x89\x06\x77\x53\xbd\xac\x4e\xbb\x2e\x2b\x85\xd0\x5d\xaf\x4e\xdf\x68\xeb\x0f\x53\x29\x03\x11\x12\x0f\x46\x22\x54\x5d\x2f\x72\x12\x70\x1a\xd9\x26\xb1\x68\xbc\xb8\xca\x38\xf2\xf1\x73\x84\x90\x20\x73\x39\xe9\xce\x4a\x21\xcc\xc9\x51\xbd\x3b\x25\xa5\xbb\xa6\x71\xbf\x91\x38\xfe\x56\x12\x6d\x97\x24\xd7\x8b\xa2\x50\x34\xf0\x11\xdc\x24\x23\xf5\x22\xc1\xcd\x26\xa8\x3b\x8c\x9c\xd9\xa8\x56\x53\xcf\x12\x6e\x1f\xc2\x22\xb2\x46\xa4\x09\xc9\x23\xd7\xa6\xa0\x2f\x1e\xf6\xab\x7d\x09\xe2\x87\x11\xf6\xab\xe1\x13\x57\xcf\x02\xa1\x84\x03\x68\xf8\x17\x7c\x92\x2f\x05\xf6\xab\xcb\x25\xb8\xe9\xe9\xad\xb7\x13\xbb\x36\x13\x2c\xbd\xeb\x76\xa2\x4a\xf7\x47\x7a\x34\x74\x06\xa0\xc2\x95\x56\x80\x86\x3b\x6a\x5d\xe1\xb3\xfe\x75\x3e\x20\xef\x0a\x55\x1b\x6e\x12\x56\x7a\x6f\x27\x42\x23\x67\xd3\x6a\x3f\x76\x4c\x49\xce\x42\x8c\xba\x4c\x1f\x2e\x76\x32\x5d\xee\x44\xec\xe0\x8c\xa0\x09\x47\x84\x2a\x51\x8e\x94\xaf\x1c\xbb\x93\x6f\x9c\xfc\x6e\xdf\x64\x28\xa8\x61\xca\x57\xf2\x9f\x6f\x7a\xfb\x66\xc2\x7b\x3b\xd1\xa3\xbb\xe4\xb0\x26\xd3\x59\x2c\xd8\xa5\x33\x56\xe9\xae\x70\xd3\x09\x6a\xd4\xc0\xcd\x20\x28\x60\xe4\xb6\x13\xf0\x9d\xab\xbe\x69\xe2\xd9\xb0\x53\xfc\xca\x3d\x2f\x15\xa4\xc2\x7e\xb5\x7b\x67\xa1\x5a\xdd\xe0\x03\x55\x2c\x62\x78\xb4\x16\x0d\x3d\x5a\xb8\x68\x9b\xf1\xb2\x30\xd5\xc0\x22\x8f\x6f\x27\xa8\xed\x44\x6d\x1a\x0b\x1e\xdf\x41\x50\x3b\x08\xc7\xfd\x5a\xb1\xf4\x79\x82\x7a\x9e\xa8\x55\xb2\xe0\xf1\x9d\x04\xb5\x93\x78\xbb\x7c\xe4\xe3\xad\x46\xfe\x8d\xf2\x06\x37\xd4\xea\xe0\x33\x3a\x6e\x16\x21\x60\xb0\x53\x0d\x5f\xd1\x3a\x28\xad\xfc\xeb\xb0\x7a\x62\x45\xce\x24\xd1\x7e\x93\x65\x63\xfe\x86\x73\xa6\x6a\x5c\xa9\xfc\x69\xf8\x3b\x9d\x0f\xd0\x00\x92\x93\x7c\x5a\x51\x30\xf8\x7b\x2d\xa7\x33\x8a\xe7\xac\x64\x3c\x9f\xa2\xfd\x4e\x63\x61\x8f\xee\xcf\x50\xa1\xf3\x81\x72\xef\x9d\xc6\x91\xb3\xf1\xb5\x97\x68\xc4\x27\x36\x61\x47\xa9\xff\x24\xdc\x70\x4a\x32\x27\xcd\x75\x1f\x18\x37\xad\xc8\x22\xdc\x2e\x4c\x3a\x53\x9a\xc2\xab\x7b\x6a\x7c\x44\x55\xf5\x7e\x82\x3f\x67\x70\xe7\xb9\xc5\x45\xb0\x89\x21\x9a\xf7\x12\x1f\xfb\x08\x5e\xd5\xbe\x9e\x08\xb7\x0b\x26\x1e\xf5\x27\xf7\xed\x27\x04\xd4\x9f\xcc\x02\xaa\x81\x30\xd4\x4e\x91\x7f\x2a\xd9\x2d\x54\x03\x91\xe7\x8f\x67\x3b\xc4\xa3\xb8\xe6\xb9\xb9\x66\x42\xdd\x10\x6a\xed\x21\x0a\xab\xc4\x0f\x37\x37\x87\xc8\xdc\x22\xc4\x4b\x56\x75\x8f\xaf\x57\xd2\x78\xb2\xe6\x10\x66\x25\x9b\x70\x43\xd1\xb5\xd5\x4d\x2e\x62\xe3\xaf\x9d\xa4\x4d\x44\xb4\x2c\x69\x22\x45\x79\x39\x0b\x48\x13\xbc\xef\x2b\xc7\x10\xc6\x02\x6a\xbb\x68\x1a\xea\x79\xd1\x14\xd2\x19\x47\x4e\xa2\x01\x9c\xa6\x0d\xf5\x79\x8c\xfc\x25\x6e\x87\x64\x6e\x6a\x36\x41\x83\xf6\xf5\x29\xbb\x6e\x27\x46\x42\x1d\x69\xfc\xe7\xb0\xe6\xaa\x34\xc5\xb9\x46\x42\x98\x15\x9d\x78\x11\x61\x59\xf8\x8c\x60\x08\x9f\x14\x54\xd1\xc9\x47\x8c\x4d\x75\xf1\xc4\xe0\x9a\x88\xf0\x09\x5e\x27\x0e\xd0\xcd\xeb\x9a\x77\x13\x3d\xed\xa5\x29\xe6\x04\x76\x94\x3a\x48\xe4\xb9\x7d\x69\xe2\x34\x16\xa9\x0d\x6e\x8e\x26\xa8\xbd\x04\xb7\x87\xa0\x7c\x04\x0c\x25\x35\xef\x25\x9a\x18\x02\xbe\x9d\x54\xbb\x2c\xab\x81\x30\xe7\x36\xfb\x88\xa6\xfd\x04\xbc\x94\x54\x7b\xa7\xf8\x3b\xbd\x79\x2f\x31\x52\xb3\x8f\xa8\x91\xc8\xaa\x0f\x88\x94\x62\xb9\xd6\x7f\xbe\xe9\x00\x11\xaa\x66\x88\xe6\x7d\x44\xed\xef\xd7\xa1\x79\x6e\x83\x9b\xa5\x9b\xf6\x13\xa1\xaa\x33\xa5\x29\xc2\x95\xea\xfd\x84\x1b\x4e\xd5\xf8\x8d\xb2\xdd\x64\x03\x8f\xd4\xec\x95\xda\xc8\x06\x1e\xab\xee\xe1\xaf\x56\xf1\x97\x2b\x67\xb3\xb4\x6f\x2e\xfc\xe4\x6a\x8f\xee\x8a\x7c\xf2\xc8\x97\xad\x2c\x5d\x87\xcf\x20\x9e\x80\x49\x57\x61\xcd\x55\x37\x3d\xda\x33\x12\x2a\x6c\x7f\x99\x10\x12\xca\xdf\x7b\x99\xe0\xff\xe8\x2e\x77\x8f\xcf\xe2\x4d\x89\x4d\xbb\x89\x0e\xc0\xc7\xc3\x6d\x89\xb5\x88\x1b\xb6\x25\xd6\x5e\x84\x1b\x34\x1c\x4b\x08\x89\x22\xd1\xfb\xf0\xb0\xda\xb1\x36\xd1\x1d\x35\x05\xe7\x34\x52\xce\x14\xce\x65\xa4\x5c\x29\x2c\xa0\x76\x13\x6e\xce\x99\xa2\x71\xa5\xf0\x68\x9e\xf8\x4d\x5a\x3b\x53\x28\x23\xc1\x7d\x20\xad\x5d\x1f\x8a\x6b\x57\x74\xdd\xa4\x13\xab\x77\x13\x06\xf7\xce\x46\x43\x05\x46\x31\x44\xc5\x74\x6a\x3f\x51\x81\x51\xbb\x89\xf6\xd2\x94\xf0\x28\x8f\x39\x7e\x92\x34\xdd\x99\x22\x1d\xb7\x15\xc2\xc7\x93\xca\x1b\xfd\xe2\xf7\x76\x57\x0a\x35\x87\x68\x77\x8a\x5c\xdb\x4b\xc5\x1e\xda\x9f\x4a\x59\x4f\xf4\xe8\xae\xf8\xe2\xe4\x45\xa6\xc7\xfc\xce\xd9\xb4\x5a\xd4\x37\x7d\xa4\xc7\xcc\xb3\xf4\x7b\x00\x15\xfe\x34\x52\xe3\x23\xc6\x96\x2e\x16\x50\x2c\x41\x35\x12\xe2\xaa\xd5\x2e\x28\xc3\x1d\xb5\x8d\xe1\xb3\xfe\xfd\xf2\x32\xd6\x24\x78\xbd\xa2\xba\x79\x05\x3b\x4a\xb1\xc4\x48\xa8\xcf\x47\xd4\x9e\xef\xa9\xd9\x43\xf8\x40\x0d\x4d\x88\x7a\x98\xe9\xd3\x5c\x5b\xcd\x22\x02\x1e\x3e\x33\x3e\xa1\x1e\x57\xb3\xa3\x54\x23\xe1\x53\xc8\xda\x0e\xbf\xc8\x2b\xca\xcb\x1d\x5a\x25\x33\xa7\x90\x45\xc8\x39\xb0\xf3\x4b\x9f\x5a\x9c\x70\xd2\x57\xb7\x2f\xf1\x9a\x51\x7c\x49\xd7\xbe\x4b\x57\x4b\x75\x63\xfb\x08\x41\xc6\xb5\x5f\x20\x48\x05\x0d\x02\x71\x42\x3c\xfc\xe4\x6a\x88\xff\x93\x7c\x61\x94\xee\x6f\xc4\x4e\xfb\xd5\xf4\xa8\x6f\x94\x23\x84\x85\x3e\x0d\xcc\x4a\xe4\x21\x8b\xf4\x73\x84\x90\x49\x71\x04\x5c\xac\x62\x01\x35\x8b\xe0\xd2\x08\x6a\x3a\xc1\x41\x82\x9a\x41\xf0\x3a\x16\x15\xeb\x55\x72\x3d\xac\x54\xb9\x7d\x20\x7a\x01\x40\xf8\x44\x71\x44\x81\xda\xb8\xf0\xd1\x5a\xa5\xcf\x04\x05\xb5\x63\xb1\x2a\x33\x81\x82\x84\x0f\xf9\x3a\xcd\xa1\x5a\xa5\x6f\x96\x48\xf3\x90\x48\x93\x46\x88\xe7\x90\x0f\xfd\x06\x5e\x5b\x45\xba\x19\x84\x0f\xfb\x06\x5e\x07\x45\x9a\xe9\x44\x7f\x1a\xc1\x27\x73\x33\x88\x7e\x48\xf0\xe2\x19\x38\x8b\xe0\x15\xd2\x58\xe4\x8b\x83\xe3\x8a\x4a\xbc\x92\x49\x7f\x2c\xed\x9b\xee\xc5\x94\x25\x38\x2c\x50\x52\xcf\x89\xb7\x1c\x1c\xd1\x56\x93\x4a\xc0\xff\x50\xc2\x77\x94\x5c\x13\xe1\x9b\x2a\xea\x45\x05\xff\x49\x09\x37\x68\x1c\x4b\x95\xf0\x53\xe9\xfb\xf2\x44\xee\x20\xc1\x2b\x7c\xc9\xa2\x34\xd2\xbd\x32\xbb\x85\xfc\x67\xf2\x0c\x99\x93\xc7\x0d\x62\x17\x12\x2e\xa4\x99\x11\x37\xbc\xef\x2b\xdf\x14\xd8\xaf\x16\xef\xae\x91\xf6\x19\x84\x5a\xad\x56\x7b\x67\x12\x3d\xba\xcf\xe0\xbb\x58\x25\x20\x11\xf8\x21\x56\x89\x92\x18\xbc\x43\x07\x47\xc4\xd5\xf4\x20\xe1\x8e\x2e\x5e\xbe\xa9\xe2\x82\xa1\x17\xb9\xd7\x5c\xa5\x81\x6f\x06\xec\x57\xb7\xbe\x4c\xc0\x4f\xae\xfa\x20\xec\x57\xef\x34\x54\x64\x34\xc2\x7e\x75\xa8\x43\xc5\x7f\x28\x6a\x6e\xe6\xf8\x9c\xf2\x01\x51\xe0\xa3\x54\x13\x51\xdd\x4c\x88\x22\xb0\xc9\xe4\x6c\xae\x99\x88\xb6\x60\x31\x89\xbf\x38\x32\xb5\x48\x98\xc0\x02\x6a\xe2\xa3\x30\xd4\x42\x0d\x4c\x82\x89\x50\x0d\x55\x50\x09\x13\x60\x3c\x54\xc0\x38\x88\x41\x14\x22\x10\xc4\x27\xc6\xab\xe3\x55\xf1\xca\xef\xef\x51\x3d\x86\x18\x62\x88\x21\x86\x18\x62\x88\x21\x86\x18\x62\x88\x21\x86\xbf\x1d\xb2\x17\xf8\x26\x51\x00\xc5\xd7\x45\x01\x14\xad\x5f\xb5\xca\x5e\xfc\xed\x81\x00\x3f\x98\x10\x08\x50\xf5\x57\x05\x02\x34\x7e\x6b\x20\xc0\xab\x37\x04\x02\x80\xbf\x47\x0a\xd9\x23\xff\x2d\xfe\x7f\xea\x16\xfe\xff\xa8\x5a\xc7\x43\x00\x7c\x13\x43\x00\xa2\x95\xa0\xf5\xe6\x51\x00\xc3\xb7\x8e\x02\xf8\xe4\x56\x51\x00\x86\xaf\x45\x01\x4c\xd4\xc5\x4c\xed\xcc\x7f\x38\xff\x3f\x7d\x3a\x38\x38\x24\x79\x8d\x27\x6e\xba\x48\x81\xef\xe4\x3c\x97\x9c\xec\xd7\xb6\x7c\xbc\xd9\x06\x8f\x81\xd6\x23\xad\x12\xdd\x77\x74\xee\x53\x27\x42\x03\x03\x43\x41\x7a\x20\x12\xa4\x07\xba\x25\x6f\x7c\xf7\x40\x5f\xdf\xc0\x5b\xe1\xc8\x9b\xf4\x00\x3f\x1c\x1e\x88\x0c\x51\x54\x74\xdb\xe6\xce\xc8\x99\x31\x67\xef\x89\x81\xc8\x70\x38\x72\x2a\x48\x03\xd9\xf7\xde\x17\xec\xa2\x00\x3d\x14\x3c\x31\x3c\x30\x38\x44\x77\x0f\x06\x83\x13\x7e\x9e\x1a\x0a\x76\x51\x94\xe4\x12\xff\x3f\x3e\xd6\x61\x3c\xca\xa1\x6b\x60\x88\x3e\xd4\xdc\x22\xb2\x3a\xd4\x7c\x48\x1c\xf0\xe9\xe0\xe0\xb0\x14\xef\xf0\x1d\x63\x1d\xae\xa7\xeb\x17\x85\x8c\xfc\x23\xc5\x3a\xdc\x2c\xd6\x65\xf2\x1f\x27\xc7\x4f\x99\x34\x65\xee\x94\xf9\x53\x96\x4d\x59\x37\xe5\x9f\xa7\xe8\xa7\xbe\x3a\xf5\x2c\x71\x72\xea\xbb\x53\xff\x6b\xea\x97\x53\xd3\xf4\x16\xfd\x62\xfd\x72\xfd\xbd\xfa\x8d\xfa\x27\xc7\xff\x3d\xad\xff\xbf\x32\xd6\xe1\x66\xb1\x2e\x37\x77\x8c\xcf\xc7\xe1\x84\xc0\x88\x05\xf8\x0b\x3e\x50\xd3\x8d\xcb\xff\xd9\xbb\x85\xee\xa6\xe5\x38\x06\x7a\x4b\xdf\xc4\xc0\x08\x39\x36\xc2\x4f\x77\x8e\x76\xca\xd1\x0a\xc7\xa2\xa5\x13\x02\x23\x68\x9a\x8e\xd0\xfe\x01\xda\x7f\x8c\x1e\xa5\x4f\x8d\xc5\x51\x0c\x75\xd2\x91\x2d\x34\xbd\x05\xd0\xa7\x3a\xe9\x09\xec\xc2\x34\x3d\x78\x82\x1e\x3e\xd2\x37\x4c\xf3\x63\xec\xfc\xb4\x44\x11\xa0\xa3\xbb\xc4\x76\xd0\x34\x3d\x40\xfb\xfd\x81\x16\xd0\x22\x5e\x12\x5b\xc0\x66\x4d\xb9\xe6\xb7\x7a\x60\x02\xb3\xc0\x4c\x30\xbb\x47\x9f\x4b\xac\x24\xd6\x11\xff\x44\x6c\x26\xfe\x37\xb1\x0c\xef\x27\xd6\x4d\x7e\x68\xf2\x46\xdc\x33\xb9\x71\xf2\xf0\xe4\x8f\x79\x85\xe6\x35\xbd\xf0\x61\x4d\x13\x5e\xd3\xae\x6f\x9e\x6c\xa8\x39\xae\xaf\x3e\x88\x4b\xe1\x10\xf3\x71\x47\xfb\xa4\xb1\x70\x88\x7e\x7d\xbb\x15\xa7\x7a\xf5\xed\xb9\x38\xd5\xa7\xe7\x2c\x38\x15\xd1\x73\xd9\x38\x35\xa0\x8f\x86\x43\x9c\xd6\x37\x9d\xc5\xb9\xf7\xf1\xb3\x88\x10\x0f\xcf\x60\x8e\x07\x27\x41\x90\x26\x05\x46\xe4\xe0\xdc\x5b\x7a\x99\x1b\xd7\xab\xa7\xce\xe8\xb9\x3e\x3d\xf5\x8e\x7e\x62\x60\xc4\x9a\x64\x16\x50\xff\xa1\xa7\xa7\xb4\x6e\xd5\x5f\x1f\x18\xb1\x55\x1f\x0d\x8c\xa8\xd3\x4b\x81\x11\x12\x1b\xb8\x24\xf9\xc6\xc0\x88\xf9\xf8\xb5\xc0\x88\xa5\xb8\xe4\x3a\xdc\xaa\x87\x3f\x9f\xc4\x2a\xe4\xe3\xad\x02\x23\xb8\x16\x9c\xb2\xe0\xdc\x2b\x38\x95\x8d\x4b\x81\x09\x33\x26\x71\x88\x89\x6a\xc1\x39\xd4\x44\xbd\x82\x5f\x17\x0e\x01\x4c\x21\xfe\x8f\xd4\xab\xb8\x81\xfd\xf7\xc7\x15\x26\x4a\x61\xaa\xc5\x2e\xc6\x9b\xdc\x4d\xaf\xe2\x92\xff\xfe\xb7\xc9\x5c\x0e\x2e\x20\x6e\xee\x37\x38\x35\xa8\xe7\x7e\x8b\x53\x43\xfa\x8b\xaf\xe2\x17\x5f\xc5\x5b\x93\x66\x19\x35\xb3\x84\x19\xb0\x59\xc7\xb5\xeb\x29\x0b\xbe\x2b\xc9\xc4\x1d\xd7\x53\xd9\xf8\x2e\x8d\x29\xda\xeb\xc5\x21\x7d\xd3\xab\x78\xdf\x11\x9c\xef\x75\x73\xa7\x25\x0e\x6f\x89\x1c\xd8\x49\x94\x05\x67\x01\x95\x8d\xc3\x19\x93\xa2\xe1\x10\xed\xfa\xc8\x71\xbd\x1c\x0e\xf1\x9a\x5e\x0e\x87\x38\x88\x37\x4f\x36\x5c\x0b\x87\x38\xae\xe7\xbf\x58\xa4\x37\xec\xd2\x1b\xa2\xe1\x10\x4d\xf8\xc8\xc7\x84\x21\x1a\x0e\xa1\x37\x50\xaf\xe9\x5b\x0d\x06\xea\x75\xbd\xee\x0a\x97\x8b\x53\xd5\x7a\x2e\x0f\xa7\x28\x3d\xb7\x14\xa7\x6a\xf4\x6e\x16\x95\x95\xe6\x66\x01\xf5\x2a\xce\x7e\x4e\x1d\xc1\x45\x8b\x23\xb3\x44\x8b\xa3\xb3\x58\x40\xe5\xe0\xd4\x7c\x5c\x0e\x87\x38\xa3\x0f\x05\x50\xea\x1d\xbd\x9b\x4e\xe6\xce\xe8\xeb\xd0\x10\xf7\x8e\xbe\x0e\x75\x73\xef\x48\x63\xf8\xb5\x38\x06\x0e\x99\x45\x1d\x92\xf4\x8c\xce\xa2\x0e\x8b\xaa\xd6\x58\x70\x29\x1c\x22\x07\x1f\x0b\x87\x98\x31\x89\x05\xd4\x11\xbc\xc1\xdd\x74\x44\x56\xe7\x7d\xc9\x59\x39\xb8\xee\x7a\x75\xfa\x46\x5b\x93\x66\x51\x16\x3c\x24\x1e\xb2\xf1\x50\xf5\x11\x91\xd3\x58\x38\xc4\x8c\x49\x8d\x17\x87\xf4\x23\x1f\x73\xb8\x90\x20\x73\x39\xe9\xce\xca\xc1\xcd\xc9\x51\xbd\x23\x92\xd2\x51\x13\xf7\xb6\xc4\xf1\x8c\xc4\x11\xb0\x88\x3c\x58\xce\xab\x17\xcd\x5e\xaf\xa7\x5e\xc1\xb9\xbb\x70\xaa\x4d\xcf\xb5\xeb\xd5\x6a\xea\x20\x2e\x87\x43\xc8\x44\xe2\x34\xfc\x5b\xc3\x21\x0a\xf0\x5d\x14\xce\xd2\xbb\x0a\xf0\xef\x12\x0e\x51\x80\x47\xc3\x21\x66\x6b\xb3\x6a\xf4\xdf\x1a\x0e\xd1\xac\xbd\x71\xca\x7f\x3d\x1c\x82\xc2\xbd\x05\x78\x8f\xee\x92\xc3\xae\x95\xc2\x21\xbc\xfa\x2a\xc9\x3d\x0c\x66\xf2\xea\x9e\x9a\x63\x78\x55\xf5\xeb\xf8\x04\xff\xff\x6b\x78\xf3\x71\xfc\xe3\x63\x38\xaf\x6a\xff\x29\x3e\xee\xff\x7f\x1d\x8f\xfa\xff\x3b\x71\x43\xed\x14\xf9\xa7\x92\xdd\x42\x75\xe2\xb2\xff\xbf\x13\x8f\xfa\xff\xdf\xc4\xd5\x0d\xa1\xd6\x41\xbc\xb0\x4a\xfc\xb8\xce\x39\x0f\xa7\x27\xc3\xba\x64\x6e\x09\x2e\x47\x3d\x9c\xd0\x38\x5e\xd2\xc8\xbf\x0e\xab\x27\x56\xac\xd0\x89\xf6\x9b\x2c\x1b\xf3\x37\x1c\x32\x4b\x83\xce\xe2\x4f\xc3\xcf\x92\xa5\x70\x88\xe7\x74\xd1\x70\x88\x3f\x69\x26\x1a\xcf\xa7\x68\x3f\xae\x97\xc2\x21\x26\x27\xfb\x40\xb9\xf7\xb8\xfe\x5a\x38\xc4\x73\x3a\x76\x94\x6a\xc2\xdd\x70\xb6\x56\x9e\xeb\xd4\x5d\x38\x0d\xda\xb1\x99\xbb\x0a\xf0\x1b\xfc\xff\x27\xf0\xef\xec\xff\x0f\xe2\x92\xff\x7f\x29\x2e\xf9\xff\x8f\xe2\x3d\xed\x60\xa6\xe4\xff\xef\xc2\x6f\xf0\xff\xb7\xe2\xd4\x71\x9c\x6b\xc3\xa9\x63\x38\x0c\x25\x35\x1f\xc7\x9b\x5e\xc3\x65\xff\x7f\x27\x6e\xce\x6d\x3e\x86\x37\xbd\x8e\xcb\xfe\xff\x4e\xdc\x9c\xde\x7c\x1c\x1f\xa9\x69\xc7\x6b\x24\xb2\xea\x0e\x91\x52\x2c\xd7\xfa\xcf\x37\x75\xe0\xa1\xea\xd7\xf0\xe6\x76\x7c\x82\xff\xff\x75\x3c\x54\x75\x06\xcc\x14\xae\x54\xbf\x8e\x47\x1d\xfc\x92\xdd\x64\x03\x8f\xd4\x1c\x97\xda\x4c\xf4\xff\xff\x14\xff\x5b\xfc\xff\x21\x5c\x48\x28\x7f\x2f\x84\xcb\xfe\xff\x31\xb3\x6d\x4a\x6c\x3a\x8a\xdf\xc4\xff\xff\x06\x2e\x24\x8a\x44\xd7\xf9\xff\x9f\xd3\x71\x67\xf5\x14\x32\x93\x7b\x5f\x4f\xa1\x33\x59\x40\x1d\xc5\xdd\x1c\x32\x53\x83\xce\x94\xfc\xff\xc8\x4c\x69\xb1\x98\x49\x65\xe3\xdc\xbb\xd2\xc9\xfa\x9e\x78\xb2\x46\x17\x0a\x3a\xb1\xfa\x28\x3e\xe6\xff\x7f\x0d\xaf\x98\x4e\xbd\x8e\x57\x60\xd4\x51\xbc\x1d\xcc\x1c\xf3\xff\x23\x33\xbf\xee\xff\x47\x67\x52\x4b\xf1\x76\x44\xe4\xda\x0e\xc4\x1e\xda\x67\xce\xfc\x29\xfe\xad\xfe\xff\x63\xf8\x04\xff\xff\x1b\x38\x75\x02\xbf\xa5\xff\x5f\x54\xb7\xe4\xff\x7f\x03\x1f\x09\xf5\x1d\xc3\x6b\xcf\xf7\xd4\xb4\xe1\x3e\x50\xd3\x8a\x8b\x7a\xf8\x36\xff\xff\x09\xfc\xef\xe4\xff\xff\x00\x27\xe3\xda\x3f\xc4\xbf\x83\xff\xbf\x1b\x17\x16\xfa\x14\x63\xfe\xff\x6e\x5c\xc8\xa4\xba\x71\xd9\xff\xbf\x04\xe7\x16\xe2\x54\x2e\xce\x2d\xc2\xa9\x3c\x5c\xf2\xff\x77\xe3\x82\x4a\xae\xff\x6e\xfe\xff\x45\xf8\xb7\xfb\xff\x17\xe2\xdf\xcd\xff\x9f\x87\x7f\xbb\xff\x3f\x17\xef\x5f\x88\xf3\xc9\x5c\x1e\xde\xbf\x08\x97\xfc\xff\x4b\x70\xc9\xff\xbf\x04\xbf\xa5\xff\xff\xaa\x01\x16\x28\x29\x4e\xbc\xc6\x76\xe3\x6d\x35\x0b\xf0\xa8\xff\x3f\x88\xfb\x94\xb7\xf2\xff\x77\xe1\xdf\xe4\xff\x9f\xf3\x35\xff\x7f\x1e\x2e\xf9\xff\xad\xf8\xd7\xfd\xff\x4b\x92\xe1\x25\x2d\x0b\xa8\x2e\xfc\x1b\xfd\xff\x21\xfc\xeb\xfe\x7f\xf4\x56\xfe\xff\x20\x5e\xfd\x26\x3e\xee\xff\x7f\x13\xbf\xc1\xff\x1f\x14\x35\x79\x13\xff\xbf\x49\x6b\xd2\x98\x92\x4c\x89\x26\xb5\x49\x65\x52\x9a\x12\x4c\xf1\x26\x85\x29\xce\x84\x99\x50\x13\x62\x02\xf1\x09\xf1\xf1\xf1\x8a\xf8\xb8\x78\x2c\x1e\x8d\x47\xe2\x41\x42\x72\x82\x36\xe1\xff\xfa\xff\x2f\xf8\xff\x02\x00\x00\xff\xff\x72\xf0\x66\xe7\x00\x30\x02\x00"), + }, + } + fs["/"].(*vfsgen۰DirInfo).entries = []os.FileInfo{ + fs["/Apple2_Plus.rom"].(os.FileInfo), + fs["/Apple2rev7CharGen.rom"].(os.FileInfo), + fs["/DISK2.rom"].(os.FileInfo), + fs["/dos33.dsk"].(os.FileInfo), + } + + return fs +}() + +type vfsgen۰FS map[string]interface{} + +func (fs vfsgen۰FS) Open(path string) (http.File, error) { + path = pathpkg.Clean("/" + path) + f, ok := fs[path] + if !ok { + return nil, &os.PathError{Op: "open", Path: path, Err: os.ErrNotExist} + } + + switch f := f.(type) { + case *vfsgen۰CompressedFileInfo: + gr, err := gzip.NewReader(bytes.NewReader(f.compressedContent)) + if err != nil { + // This should never happen because we generate the gzip bytes such that they are always valid. + panic("unexpected error reading own gzip compressed bytes: " + err.Error()) + } + return &vfsgen۰CompressedFile{ + vfsgen۰CompressedFileInfo: f, + gr: gr, + }, nil + case *vfsgen۰DirInfo: + return &vfsgen۰Dir{ + vfsgen۰DirInfo: f, + }, nil + default: + // This should never happen because we generate only the above types. + panic(fmt.Sprintf("unexpected type %T", f)) + } +} + +// vfsgen۰CompressedFileInfo is a static definition of a gzip compressed file. +type vfsgen۰CompressedFileInfo struct { + name string + modTime time.Time + compressedContent []byte + uncompressedSize int64 +} + +func (f *vfsgen۰CompressedFileInfo) Readdir(count int) ([]os.FileInfo, error) { + return nil, fmt.Errorf("cannot Readdir from file %s", f.name) +} +func (f *vfsgen۰CompressedFileInfo) Stat() (os.FileInfo, error) { return f, nil } + +func (f *vfsgen۰CompressedFileInfo) GzipBytes() []byte { + return f.compressedContent +} + +func (f *vfsgen۰CompressedFileInfo) Name() string { return f.name } +func (f *vfsgen۰CompressedFileInfo) Size() int64 { return f.uncompressedSize } +func (f *vfsgen۰CompressedFileInfo) Mode() os.FileMode { return 0444 } +func (f *vfsgen۰CompressedFileInfo) ModTime() time.Time { return f.modTime } +func (f *vfsgen۰CompressedFileInfo) IsDir() bool { return false } +func (f *vfsgen۰CompressedFileInfo) Sys() interface{} { return nil } + +// vfsgen۰CompressedFile is an opened compressedFile instance. +type vfsgen۰CompressedFile struct { + *vfsgen۰CompressedFileInfo + gr *gzip.Reader + grPos int64 // Actual gr uncompressed position. + seekPos int64 // Seek uncompressed position. +} + +func (f *vfsgen۰CompressedFile) Read(p []byte) (n int, err error) { + if f.grPos > f.seekPos { + // Rewind to beginning. + err = f.gr.Reset(bytes.NewReader(f.compressedContent)) + if err != nil { + return 0, err + } + f.grPos = 0 + } + if f.grPos < f.seekPos { + // Fast-forward. + _, err = io.CopyN(ioutil.Discard, f.gr, f.seekPos-f.grPos) + if err != nil { + return 0, err + } + f.grPos = f.seekPos + } + n, err = f.gr.Read(p) + f.grPos += int64(n) + f.seekPos = f.grPos + return n, err +} +func (f *vfsgen۰CompressedFile) Seek(offset int64, whence int) (int64, error) { + switch whence { + case io.SeekStart: + f.seekPos = 0 + offset + case io.SeekCurrent: + f.seekPos += offset + case io.SeekEnd: + f.seekPos = f.uncompressedSize + offset + default: + panic(fmt.Errorf("invalid whence value: %v", whence)) + } + return f.seekPos, nil +} +func (f *vfsgen۰CompressedFile) Close() error { + return f.gr.Close() +} + +// vfsgen۰DirInfo is a static definition of a directory. +type vfsgen۰DirInfo struct { + name string + modTime time.Time + entries []os.FileInfo +} + +func (d *vfsgen۰DirInfo) Read([]byte) (int, error) { + return 0, fmt.Errorf("cannot Read from directory %s", d.name) +} +func (d *vfsgen۰DirInfo) Close() error { return nil } +func (d *vfsgen۰DirInfo) Stat() (os.FileInfo, error) { return d, nil } + +func (d *vfsgen۰DirInfo) Name() string { return d.name } +func (d *vfsgen۰DirInfo) Size() int64 { return 0 } +func (d *vfsgen۰DirInfo) Mode() os.FileMode { return 0755 | os.ModeDir } +func (d *vfsgen۰DirInfo) ModTime() time.Time { return d.modTime } +func (d *vfsgen۰DirInfo) IsDir() bool { return true } +func (d *vfsgen۰DirInfo) Sys() interface{} { return nil } + +// vfsgen۰Dir is an opened dir instance. +type vfsgen۰Dir struct { + *vfsgen۰DirInfo + pos int // Position within entries for Seek and Readdir. +} + +func (d *vfsgen۰Dir) Seek(offset int64, whence int) (int64, error) { + if offset == 0 && whence == io.SeekStart { + d.pos = 0 + return 0, nil + } + return 0, fmt.Errorf("unsupported Seek in directory %s", d.name) +} + +func (d *vfsgen۰Dir) Readdir(count int) ([]os.FileInfo, error) { + if d.pos >= len(d.entries) && count > 0 { + return nil, io.EOF + } + if count <= 0 || count > len(d.entries)-d.pos { + count = len(d.entries) - d.pos + } + e := d.entries[d.pos : d.pos+count] + d.pos += count + return e, nil +}